mirror of
https://github.com/caronc/apprise-api.git
synced 2024-11-07 16:54:10 +01:00
20 lines
299 B
YAML
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
|