Skip to content

Commit 5b2e8ec

Browse files
Bot Updating Templated Files
1 parent 19cd312 commit 5b2e8ec

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,14 @@ services:
112112
environment:
113113
- PUID=1000
114114
- PGID=1000
115-
- APP_URL=
115+
- APP_URL=https://bookstack.example.com
116116
- DB_HOST=bookstack_db
117117
- DB_PORT=3306
118118
- DB_USER=bookstack
119119
- DB_PASS=<yourdbpass>
120120
- DB_DATABASE=bookstackapp
121121
volumes:
122-
- /path/to/data:/config
122+
- ./bookstack_app_data:/config
123123
ports:
124124
- 6875:80
125125
restart: unless-stopped
@@ -137,7 +137,7 @@ services:
137137
- MYSQL_USER=bookstack
138138
- MYSQL_PASSWORD=<yourdbpass>
139139
volumes:
140-
- /path/to/data:/config
140+
- ./bookstack_db_data:/config
141141
restart: unless-stopped
142142

143143
```
@@ -150,7 +150,7 @@ docker run -d \
150150
-e PUID=1000 \
151151
-e PGID=1000 \
152152
-e TZ=Etc/UTC \
153-
-e APP_URL= \
153+
-e APP_URL=<yourbaseurl> \
154154
-e DB_HOST=<yourdbhost> \
155155
-e DB_PORT=<yourdbport> \
156156
-e DB_USER=<yourdbuser> \
@@ -173,7 +173,7 @@ Container images are configured using parameters passed at runtime (such as thos
173173
| `-e PUID=1000` | for UserID - see below for explanation |
174174
| `-e PGID=1000` | for GroupID - see below for explanation |
175175
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
176-
| `-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` |
176+
| `-e APP_URL=<yourbaseurl>` | 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` |
177177
| `-e DB_HOST=<yourdbhost>` | for specifying the database host |
178178
| `-e DB_PORT=<yourdbport>` | for specifying the database port if not default 3306 |
179179
| `-e DB_USER=<yourdbuser>` | for specifying the database user |

0 commit comments

Comments
 (0)