You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dwgstatus/docker-compose.yaml

28 lines
483 B

services:
web:
build: .
volumes:
- .:/app
- /mnt/p:/mnt/p
- /mnt/s:/mnt/s
- /mnt/s/Dev/dwgstatus-backups:/backups
depends_on:
- db
restart: always
db:
image: "postgres"
restart: always
environment:
POSTGRES_PASSWORD: postpass
nginx:
image: "nginx"
restart: always
ports:
- 8000:80
- 80:80
volumes:
- ./nginx:/etc/nginx/conf.d
- ./static:/static
depends_on:
- web