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
@@ -112,14 +112,14 @@ services:
112
112
environment:
113
113
- PUID=1000
114
114
- PGID=1000
115
-
- APP_URL=
115
+
- APP_URL=https://bookstack.example.com
116
116
- DB_HOST=bookstack_db
117
117
- DB_PORT=3306
118
118
- DB_USER=bookstack
119
119
- DB_PASS=<yourdbpass>
120
120
- DB_DATABASE=bookstackapp
121
121
volumes:
122
-
- /path/to/data:/config
122
+
- ./bookstack_app_data:/config
123
123
ports:
124
124
- 6875:80
125
125
restart: unless-stopped
@@ -137,7 +137,7 @@ services:
137
137
- MYSQL_USER=bookstack
138
138
- MYSQL_PASSWORD=<yourdbpass>
139
139
volumes:
140
-
- /path/to/data:/config
140
+
- ./bookstack_db_data:/config
141
141
restart: unless-stopped
142
142
143
143
```
@@ -150,7 +150,7 @@ docker run -d \
150
150
-e PUID=1000 \
151
151
-e PGID=1000 \
152
152
-e TZ=Etc/UTC \
153
-
-e APP_URL= \
153
+
-e APP_URL=<yourbaseurl> \
154
154
-e DB_HOST=<yourdbhost> \
155
155
-e DB_PORT=<yourdbport> \
156
156
-e DB_USER=<yourdbuser> \
@@ -173,7 +173,7 @@ Container images are configured using parameters passed at runtime (such as thos
173
173
|`-e PUID=1000`| for UserID - see below for explanation |
174
174
|`-e PGID=1000`| for GroupID - see below for explanation |
175
175
|`-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`|
177
177
|`-e DB_HOST=<yourdbhost>`| for specifying the database host |
178
178
|`-e DB_PORT=<yourdbport>`| for specifying the database port if not default 3306 |
179
179
|`-e DB_USER=<yourdbuser>`| for specifying the database user |
0 commit comments