Gotify

Ich nutze Gotify um schnell Push-Benachrichtigungen auf mein Handy zu bekommen, falls etwas in meinem Homelab nicht passt.
Gotify ist so konfiguriert, dass es HTTPS mit meiner eigenen CA macht.

services:
  gotify:
    container_name: gotify
    image: gotify/server
    volumes:
      - "data:/app/data"
      - "./certs:/certs"
    restart: unless-stopped
    ports:
      - "80:80"
      - "443:443"
    environment:
      - "TZ=Europe/Berlin"
      - "GOTIFY_SERVER_SSL_ENABLED=true"
      - "GOTIFY_SERVER_SSL_REDIRECTTOHTTPS=false"
      - "GOTIFY_SERVER_SSL_PORT=443"
      - "GOTIFY_SERVER_SSL_CERTFILE=/certs/gotify.muench.lan.pem"
      - "GOTIFY_SERVER_SSL_CERTKEY=/certs/gotify.muench.lan.key"
      - "GOTIFY_SERVER_SSL_LETSENCRYPT_ENABLED=false"
      - "GOTIFY_SERVER_SSL_LETSENCRYPT_ACCEPTTOS=false"
    networks:
      - default

volumes:
  data: