homelab_docker/Node1/Docker (100)/Gotify/compose.yaml

33 lines
780 B
YAML

services:
gotify:
image: gotify/server:2.9.1
container_name: gotify
restart: unless-stopped
environment:
- TZ=Europe/Berlin
- GOTIFY_DEFAULTUSER_NAME=max
- GOTIFY_DEFAULTUSER_PASS=changeme
volumes:
- ./data:/app/data
networks:
- gotify_net
igotify:
image: ghcr.io/androidseb25/igotify-notification-assist:latest
container_name: igotify
restart: unless-stopped
environment:
- TZ=Europe/Berlin
- ASPNETCORE_URLS=http://+:8080
- ASPNETCORE_HTTPS_REDIRECTION_PORT=443
- ASPNETCORE_FORWARDEDHEADERS_ENABLED=true
- GOTIFY_URL=http://gotify:80
- GOTIFY_CLIENT_TOKEN=T
depends_on:
- gotify
networks:
- gotify_net
networks:
gotify_net:
external: true