Bot Updating Documentation

pull/120/head
LinuxServer-CI 2023-05-23 12:33:30 +00:00
rodzic 45a7a0eb0f
commit 5c59d0b52b
1 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -87,14 +87,14 @@ services:
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- APP_URL= - APP_URL=https://bookstack.example.com
- DB_HOST=bookstack_db - DB_HOST=bookstack_db
- DB_PORT=3306 - DB_PORT=3306
- DB_USER=bookstack - DB_USER=bookstack
- DB_PASS=<yourdbpass> - DB_PASS=<yourdbpass>
- DB_DATABASE=bookstackapp - DB_DATABASE=bookstackapp
volumes: volumes:
- /path/to/data:/config - ./bookstack_app_data:/config
ports: ports:
- 6875:80 - 6875:80
restart: unless-stopped restart: unless-stopped
@ -112,7 +112,7 @@ services:
- MYSQL_USER=bookstack - MYSQL_USER=bookstack
- MYSQL_PASSWORD=<yourdbpass> - MYSQL_PASSWORD=<yourdbpass>
volumes: volumes:
- /path/to/data:/config - ./bookstack_db_data:/config
restart: unless-stopped restart: unless-stopped
``` ```
@ -125,7 +125,7 @@ docker run -d \
-e PUID=1000 \ -e PUID=1000 \
-e PGID=1000 \ -e PGID=1000 \
-e TZ=Etc/UTC \ -e TZ=Etc/UTC \
-e APP_URL= \ -e APP_URL=<yourbaseurl> \
-e DB_HOST=<yourdbhost> \ -e DB_HOST=<yourdbhost> \
-e DB_PORT=<yourdbport> \ -e DB_PORT=<yourdbport> \
-e DB_USER=<yourdbuser> \ -e DB_USER=<yourdbuser> \
@ -155,7 +155,7 @@ Docker images are configured using parameters passed at runtime (such as those a
| `PUID=1000` | for UserID - see below for explanation | | `PUID=1000` | for UserID - see below for explanation |
| `PGID=1000` | for GroupID - see below for explanation | | `PGID=1000` | for GroupID - see below for explanation |
| `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
| `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` | | `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` |
| `DB_HOST=<yourdbhost>` | for specifying the database host | | `DB_HOST=<yourdbhost>` | for specifying the database host |
| `DB_PORT=<yourdbport>` | for specifying the database port if not default 3306 | | `DB_PORT=<yourdbport>` | for specifying the database port if not default 3306 |
| `DB_USER=<yourdbuser>` | for specifying the database user | | `DB_USER=<yourdbuser>` | for specifying the database user |