From fce095ee26667769398fac769fb39e3405bcd290 Mon Sep 17 00:00:00 2001 From: M_Viper Date: Tue, 13 Feb 2024 13:00:57 +0000 Subject: [PATCH] =?UTF-8?q?install-gotify-on-docker/docker-compose.yml=20h?= =?UTF-8?q?inzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install-gotify-on-docker/docker-compose.yml | 46 +++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 install-gotify-on-docker/docker-compose.yml diff --git a/install-gotify-on-docker/docker-compose.yml b/install-gotify-on-docker/docker-compose.yml new file mode 100644 index 0000000..2573f23 --- /dev/null +++ b/install-gotify-on-docker/docker-compose.yml @@ -0,0 +1,46 @@ +version: '3.8' + +services: + gotify: + container_name: gotify + hostname: gotify + image: gotify/server # Uncommand correct server image + # image: gotify/server-arm7 + # image: gotify/server-arm64 + restart: unless-stopped + security_opt: + - no-new-privileges:true + networks: + - net + ports: + - "8680:80" + volumes: + - data:/app/data + environment: + TZ: 'Europe/Berlin' + GOTIFY_DEFAULTUSER_PASS: 'my-very-strong-password' # 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: + IGOTIFY_CLIENT_TOKEN: '' # create a client in gotify an add here the client token + GOTIFY_SERVER_URL: 'http://gotify' # default container name from gotify server + +networks: + net: + +volumes: + data: + api-data: \ No newline at end of file