diff --git a/README.md b/README.md index b3797ee..dad74ef 100644 --- a/README.md +++ b/README.md @@ -112,14 +112,14 @@ services: environment: - PUID=1000 - PGID=1000 - - APP_URL= + - APP_URL=https://bookstack.example.com - DB_HOST=bookstack_db - DB_PORT=3306 - DB_USER=bookstack - DB_PASS= - DB_DATABASE=bookstackapp volumes: - - /path/to/data:/config + - ./bookstack_app_data:/config ports: - 6875:80 restart: unless-stopped @@ -137,7 +137,7 @@ services: - MYSQL_USER=bookstack - MYSQL_PASSWORD= volumes: - - /path/to/data:/config + - ./bookstack_db_data:/config restart: unless-stopped ``` @@ -150,7 +150,7 @@ docker run -d \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Etc/UTC \ - -e APP_URL= \ + -e APP_URL= \ -e DB_HOST= \ -e DB_PORT= \ -e DB_USER= \ @@ -173,7 +173,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | -| `-e APP_URL=` | for specifying the IP:port or URL your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com` | +| `-e APP_URL=` | for specifying the IP:port or URL your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com` | | `-e DB_HOST=` | for specifying the database host | | `-e DB_PORT=` | for specifying the database port if not default 3306 | | `-e DB_USER=` | for specifying the database user |