Skip to content

Commit b00371e

Browse files
authored
Merge pull request #171 from ssddanbrown/compose-changes
2 parents d94b7ab + 00ff6d8 commit b00371e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

readme-vars.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ param_volumes:
2626
param_usage_include_env: true
2727
param_env_vars:
2828
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"}
29-
- { env_var: "APP_URL", env_value: "", desc: "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`"}
29+
- { env_var: "APP_URL", env_value: "<yourbaseurl>", desc: "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`"}
3030
- { env_var: "DB_HOST", env_value: "<yourdbhost>", desc: "for specifying the database host" }
3131
- { env_var: "DB_PORT", env_value: "<yourdbport>", desc: "for specifying the database port if not default 3306" }
3232
- { env_var: "DB_USER", env_value: "<yourdbuser>", desc: "for specifying the database user" }
@@ -50,14 +50,14 @@ custom_compose: |
5050
environment:
5151
- PUID=1000
5252
- PGID=1000
53-
- APP_URL=
53+
- APP_URL=https://bookstack.example.com
5454
- DB_HOST=bookstack_db
5555
- DB_PORT=3306
5656
- DB_USER=bookstack
5757
- DB_PASS=<yourdbpass>
5858
- DB_DATABASE=bookstackapp
5959
volumes:
60-
- /path/to/data:/config
60+
- ./bookstack_app_data:/config
6161
ports:
6262
- 6875:80
6363
restart: unless-stopped
@@ -75,7 +75,7 @@ custom_compose: |
7575
- MYSQL_USER=bookstack
7676
- MYSQL_PASSWORD=<yourdbpass>
7777
volumes:
78-
- /path/to/data:/config
78+
- ./bookstack_db_data:/config
7979
restart: unless-stopped
8080
8181
# application setup block

0 commit comments

Comments
 (0)