diff --git a/images/docker-bookstack.md b/images/docker-bookstack.md index a4db725fd..4e1d2d34d 100644 --- a/images/docker-bookstack.md +++ b/images/docker-bookstack.md @@ -87,14 +87,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 @@ -112,7 +112,7 @@ services: - MYSQL_USER=bookstack - MYSQL_PASSWORD= volumes: - - /path/to/data:/config + - ./bookstack_db_data:/config restart: unless-stopped ``` @@ -125,7 +125,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= \ @@ -155,7 +155,7 @@ Docker images are configured using parameters passed at runtime (such as those a | `PUID=1000` | for UserID - see below for explanation | | `PGID=1000` | for GroupID - see below for explanation | | `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | -| `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` | +| `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` | | `DB_HOST=` | for specifying the database host | | `DB_PORT=` | for specifying the database port if not default 3306 | | `DB_USER=` | for specifying the database user |