---
services:
gotify:
image: gotify/server
restart: unless-stopped
networks:
- net
ports:
- "8680:80"
environment:
GOTIFY_DEFAULTUSER_PASS: 'admin'
GOTIFY_SERVER_PORT: 8680
TZ: "Asia/Shanghai"
volumes:
- ./data:/app/data
igotify:
container_name: igotify
hostname: igotify
image: ghcr.io/androidseb25/igotify-notification-assist:latest
restart: unless-stopped
security_opt:
- no-new-privileges:true
pull_policy: always
networks:
- net
ports:
- "8681:8080"
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8080/Version" ]
interval: "3s"
timeout: "3s"
retries: 5
volumes:
- ./igotify-data:/app/data
networks:
net: