33 lines
770 B
YAML
33 lines
770 B
YAML
services:
|
|
app:
|
|
image: chiko/77th_eventcalendarntfy:v0.1.3
|
|
build: .
|
|
volumes:
|
|
- ./data/db:/opt/app/data/db
|
|
env_file:
|
|
- path: ./.env
|
|
required: true
|
|
depends_on:
|
|
apprise:
|
|
condition: service_healthy
|
|
links:
|
|
- apprise
|
|
apprise:
|
|
image: caronc/apprise:1.2.2
|
|
hostname: apprise
|
|
environment:
|
|
- APPRISE_WORKER_COUNT=1
|
|
- APPRISE_STATEFUL_MODE=simple
|
|
# - PUID=$(id -u)
|
|
# - PGID=$(id -g)
|
|
volumes:
|
|
- ./data/apprise/config:/config
|
|
- ./data/apprise/plugin:/plugin
|
|
- ./data/apprise/attach:/attach
|
|
# ports:
|
|
#- 8880:8000
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8000/status"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 5 |