13 lines
562 B
YAML
13 lines
562 B
YAML
# SAMPLE DOCKER COMPOSE
|
|
services:
|
|
donetick-notifier:
|
|
container_name: donetick-notifier
|
|
image: docker.io/blinkfink182/donetick-notifier
|
|
environment:
|
|
# BELOW ARE ALL REQUIRED
|
|
- DONETICKHOST=host.docker.internal # donetick host
|
|
- DONETICKPORT=8787 # donetick port
|
|
- DONETICKAPIKEY=adminpass # donetick API key
|
|
- APPRISEWEBHOOKURL=https://apprisehost/notify/config # apprise notification url
|
|
- APPRISEWEBHOOKTAG=all # apprise notification tag
|
|
- NOTIFICATIONTIMES=8,12,17 # hours when notifications will be sent |