Files
docker-compose/gotify/docker-compose.yml
2025-03-10 20:49:13 +01:00

43 lines
798 B
YAML

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