apprise-api/docker-compose.yml
2019-10-27 11:12:44 -04:00

20 lines
299 B
YAML

version: '3.3'
services:
backend:
build:
context: .
dockerfile: Dockerfile-gunicorn
volumes:
- ./var:/var/apprise
restart: always
frontend:
build:
context: .
dockerfile: Dockerfile-nginx
ports:
- "8000:80"
links:
- backend