Heroku/docker-compose.yml

13 lines
202 B
YAML

services:
worker:
build:
context: .
volumes:
- worker:/data
stop_signal: SIGINT
restart: unless-stopped
ports:
- "${EXTERNAL_PORT:-8080}:8080"
volumes:
worker: