ntfy notification
Posted: 23 Dec 2025, 18:43
This is my current docker compose with email notification.
Now I want to use my selfhosted ntfy server.
I checked this explanation viewtopic.php?t=13769#notify-via-ntfy but not fully sure how to define it then in the docker compose (FYI: I have also a user and passwort required for my ntfy server).
Now I want to use my selfhosted ntfy server.
I checked this explanation viewtopic.php?t=13769#notify-via-ntfy but not fully sure how to define it then in the docker compose (FYI: I have also a user and passwort required for my ntfy server).
yml: Select all
services:
filebot:
container_name: FileBot
image: jlesage/filebot
ports:
- 5802:5800
volumes:
- /volume1/docker/filebot:/config:rw
- /volume1/docker/jdownloader2/output/ok:/input:rw
- /volume1/Videos:/output:rw
environment:
- USER_ID=1026
- GROUP_ID=100
- LANG=de_DE.UTF-8
- TZ=Europe/Berlin
- FILEBOT_GUI=0
- AMC_ACTION=move
- AMC_CONFLICT=skip
- AMC_LANG=German
- AMC_MOVIE_FORMAT=Filme/{~emby}
- AMC_SERIES_FORMAT=Serien/{~emby}
- AMC_PROCESS_MUSIC=n
- AMC_CUSTOM_OPTIONS=--def mail=mail.gmx.net:587:[email protected]:[email protected]:PASSWORT
- AMC_INPUT_DIR=/input
- AMC_OUTPUT_DIR=/output
restart: always