Files
nas-compose/notifications.docker-compose.yml
2022-12-26 15:36:08 +01:00

37 lines
735 B
YAML

name: Notifications
services:
gotify:
image: gotify/server
entrypoint: ./data/entrypoint.sh
environment:
GOTIFY_DEFAULTUSER_PASS_FILE: /run/secrets/admin_password
networks:
- gotify
- traefik
volumes:
- gotify:/app/data
secrets:
- admin_password
restart: unless-stopped
labels:
traefik.enable: true
traefik.http.routers.gotify.rule: HostRegexp(`gotify{subdomain:(\.[a-z0-9-]+)?}.dedicated.contact`)
networks:
gotify:
name: gotify
traefik:
external: true
volumes:
gotify:
driver_opts:
type: none
o: bind
device: ${MOUNT_DIR?}/gotify/data/
secrets:
admin_password:
file: ${MOUNT_DIR?}/gotify/secrets/admin_password