This commit is contained in:
2020-01-17 14:24:16 -06:00
parent 3dc79c2b0d
commit 9449858d2f
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
version: "3"
services:
bookstack:
image: linuxserver/bookstack
container_name: bookstack
environment:
- PUID=1000
- PGID=1000
- DB_HOST=database
- DB_USER=StillRaven
- DB_PASS=7b4o39fA*264fe6
- DB_DATABASE=bsdb
volumes:
- bookstack:/config
ports:
- 127.0.0.1:8094:80
restart: unless-stopped
depends_on:
- database
links:
- database
database:
image: linuxserver/mariadb
container_name: database
environment:
- PUID=1000
- PGID=1000
- MYSQL_ROOT_PASSWORD=7b4o39fA*264fe6
- TZ=America/Chicago
- MYSQL_DATABASE=bsdb
- MYSQL_USER=StillRaven
- MYSQL_PASSWORD=7b4o39fA*264fe6
command: ['mysqld', '--character-set-server=utf8mb4', '--collation-server=utf8mb4_unicode_ci']
volumes:
- sql:/config
restart: unless-stopped
volumes:
sql:
bookstack:

View File