24 lines
592 B
YAML
24 lines
592 B
YAML
|
name: bookstack
|
||
|
ports:
|
||
|
- host: 3010
|
||
|
container: 80
|
||
|
containers:
|
||
|
- name: app
|
||
|
env-file: /mnt/hintonburggrad/envs/bookstack-app.env
|
||
|
image: bookstack-app:latest
|
||
|
volumes:
|
||
|
- host: /mnt/hintonburggrad/apps/bookstack-app
|
||
|
container: /config
|
||
|
- name: db
|
||
|
env-file: /mnt/hintonburggrad/envs/bookstack-db.env
|
||
|
image: bookstack-db:latest
|
||
|
volumes:
|
||
|
- host: /mnt/hintonburggrad/apps/bookstack-db
|
||
|
container: /var/lib/mysql
|
||
|
build:
|
||
|
images:
|
||
|
- path: ./bookstack.Dockerfile
|
||
|
tag: bookstack-app
|
||
|
- path: ./db.Dockerfile
|
||
|
tag: bookstack-db
|