You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -113,14 +113,14 @@ services:
113
113
environment:
114
114
- PUID=1000
115
115
- PGID=1000
116
-
- APP_URL=
116
+
- APP_URL=https://bookstack.example.com
117
117
- DB_HOST=bookstack_db
118
118
- DB_PORT=3306
119
119
- DB_USER=bookstack
120
120
- DB_PASS=<yourdbpass>
121
121
- DB_DATABASE=bookstackapp
122
122
volumes:
123
-
- /path/to/data:/config
123
+
- ./bookstack_app_data:/config
124
124
ports:
125
125
- 6875:80
126
126
restart: unless-stopped
@@ -138,7 +138,7 @@ services:
138
138
- MYSQL_USER=bookstack
139
139
- MYSQL_PASSWORD=<yourdbpass>
140
140
volumes:
141
-
- /path/to/data:/config
141
+
- ./bookstack_db_data:/config
142
142
restart: unless-stopped
143
143
144
144
```
@@ -151,7 +151,7 @@ docker run -d \
151
151
-e PUID=1000 \
152
152
-e PGID=1000 \
153
153
-e TZ=Etc/UTC \
154
-
-e APP_URL= \
154
+
-e APP_URL=<yourbaseurl> \
155
155
-e DB_HOST=<yourdbhost> \
156
156
-e DB_PORT=<yourdbport> \
157
157
-e DB_USER=<yourdbuser> \
@@ -174,7 +174,7 @@ Container images are configured using parameters passed at runtime (such as thos
174
174
|`-e PUID=1000`| for UserID - see below for explanation |
175
175
|`-e PGID=1000`| for GroupID - see below for explanation |
176
176
|`-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`|
178
178
|`-e DB_HOST=<yourdbhost>`| for specifying the database host |
179
179
|`-e DB_PORT=<yourdbport>`| for specifying the database port if not default 3306 |
180
180
|`-e DB_USER=<yourdbuser>`| for specifying the database user |
0 commit comments