Files
watchstate/docker/docker-compose.yaml
2022-02-15 14:13:47 +03:00

19 lines
383 B
YAML

version: '3.3'
services:
watchstate:
container_name: watchstate
restart: unless-stopped
build: .
environment:
WS_UID: ${UID:-1000}
WS_GID: ${GID:-1000}
WS_WEBHOOK_ENABLE: 1
WS_CRON_IMPORT: 1
WS_CRON_EXPORT: 1
WS_CRON_EXPORT_AT: '*/2 * * * *'
ports:
- "8081:80"
volumes:
- ../:/app
- ./config:/config:rw