Gotify Docker-Compose

das Netzwerk docker_subnet muss angelegt sein oder an eigene Umgebung angepasst werden, oder die Zeilen Networks entfernen für Default

Volume ist ein Host bind

Docker-Compose

services:
  Gotify:
    container_name: "Gotify"
    hostname: "gotify"
    image: "gotify/server:latest"
    restart: always
    environment:
      - "TZ=Europe/Berlin"
    ports:
      - "80:80/tcp"
    volumes:
      - "/docker_data/gotify:/app/data"
    networks:
      docker_subnet:
        ipv4_address: 172.18.0.15

networks:
  docker_subnet:
    external: true