From 76d1acba147f841132b08ec6414473d1d0584c58 Mon Sep 17 00:00:00 2001 From: jaydee Date: Sat, 8 Mar 2025 00:54:29 +0100 Subject: [PATCH] lala --- gotify/docker-compose copy.yml | 22 ++++++++++++ gotify/docker-compose.yml | 64 +++++++++++++++++++++++----------- 2 files changed, 65 insertions(+), 21 deletions(-) create mode 100644 gotify/docker-compose copy.yml diff --git a/gotify/docker-compose copy.yml b/gotify/docker-compose copy.yml new file mode 100644 index 0000000..0c6a483 --- /dev/null +++ b/gotify/docker-compose copy.yml @@ -0,0 +1,22 @@ +name: gotify +services: + server: + ports: + - 8010:80 + environment: + - TZ=Europe/Berlin + - GOTIFY_DEFAULTUSER_PASS='admin' + volumes: + - /share/docker_data/gotify/data:/app/data + image: gotify/server + labels: + - com.centurylinklabs.watchtower.enable=true + - homepage.group=Utilities + - homepage.name=Gotify + - homepage.weight=1 + - homepage.icon=gotify.png + - homepage.href=https://gotify.sectorq.eu + - homepage.description=Notification Server + - homepage.widget.type=gotify + - homepage.widget.url=https://gotify.sectorq.eu + - homepage.widget.key=C3Fy8AQym_sc1zS diff --git a/gotify/docker-compose.yml b/gotify/docker-compose.yml index 0c6a483..141b249 100644 --- a/gotify/docker-compose.yml +++ b/gotify/docker-compose.yml @@ -1,22 +1,44 @@ -name: gotify +version: '3.8' + services: - server: - ports: - - 8010:80 - environment: - - TZ=Europe/Berlin - - GOTIFY_DEFAULTUSER_PASS='admin' - volumes: - - /share/docker_data/gotify/data:/app/data - image: gotify/server - labels: - - com.centurylinklabs.watchtower.enable=true - - homepage.group=Utilities - - homepage.name=Gotify - - homepage.weight=1 - - homepage.icon=gotify.png - - homepage.href=https://gotify.sectorq.eu - - homepage.description=Notification Server - - homepage.widget.type=gotify - - homepage.widget.url=https://gotify.sectorq.eu - - homepage.widget.key=C3Fy8AQym_sc1zS + gotify: + container_name: gotify + hostname: gotify + image: gotify/server + restart: unless-stopped + security_opt: + - no-new-privileges:true + networks: + - net + ports: + - "8010:80" + volumes: + - data:/app/data + environment: + GOTIFY_DEFAULTUSER_PASS: 'l4c1j4yd33Du5lo' # Change me!!!!! + + 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" + volumes: + - api-data:/app/data + #environment: # option environment see above note + # GOTIFY_URLS: '' + # GOTIFY_CLIENT_TOKENS: '' + # SECNTFY_TOKENS: '' + +networks: + net: + +volumes: + data: + api-data: \ No newline at end of file