Skip to content

Commit 122d120

Browse files
authored
Merge branch 'master' into system-cli-support
2 parents eb7bd9a + d5a2d9e commit 122d120

File tree

3 files changed

+290
-284
lines changed

3 files changed

+290
-284
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,14 @@ services:
113113
environment:
114114
- PUID=1000
115115
- PGID=1000
116-
- APP_URL=
116+
- APP_URL=https://bookstack.example.com
117117
- DB_HOST=bookstack_db
118118
- DB_PORT=3306
119119
- DB_USER=bookstack
120120
- DB_PASS=<yourdbpass>
121121
- DB_DATABASE=bookstackapp
122122
volumes:
123-
- /path/to/data:/config
123+
- ./bookstack_app_data:/config
124124
ports:
125125
- 6875:80
126126
restart: unless-stopped
@@ -138,7 +138,7 @@ services:
138138
- MYSQL_USER=bookstack
139139
- MYSQL_PASSWORD=<yourdbpass>
140140
volumes:
141-
- /path/to/data:/config
141+
- ./bookstack_db_data:/config
142142
restart: unless-stopped
143143

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

0 commit comments

Comments
 (0)