Files
docker-compose/gotify/docker-compose.yml
2025-03-23 19:30:44 +01:00

44 lines
903 B
YAML

networks:
net: null
services:
gotify:
container_name: gotify
env_file:
- stack.env
hostname: gotify
image: ${DOCKER_REGISTRY:-}gotify/server
labels:
wud.watch: true
wud.watch.digest: true
networks:
- net
ports:
- 8010:80
restart: unless-stopped
security_opt:
- no-new-privileges:true
volumes:
- /share/docker_data/gotify/data:/app/data
igotify:
container_name: igotify
env_file:
- stack.env
hostname: igotify
image: ${DOCKER_REGISTRY:-}ghcr.io/androidseb25/igotify-notification-assist:latest
labels:
wud.watch: true
wud.watch.digest: true
networks:
- net
ports:
- 8681:8080
pull_policy: always
restart: unless-stopped
security_opt:
- no-new-privileges:true
volumes:
- /share/docker_data/igotify/data:/app/data
volumes:
api-data: null
data: null