From 0ce25347de9632ee8e52be9bcee80d49bb6838b7 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Tue, 4 Apr 2023 20:24:29 +0200 Subject: [PATCH] chore(gotify): bump version to 2.2.4 --- apps/gotify/config.json | 4 ++-- apps/gotify/docker-compose.arm.yml | 30 ---------------------------- apps/gotify/docker-compose.arm64.yml | 6 +++--- apps/gotify/docker-compose.yml | 6 +++--- 4 files changed, 8 insertions(+), 38 deletions(-) delete mode 100644 apps/gotify/docker-compose.arm.yml diff --git a/apps/gotify/config.json b/apps/gotify/config.json index 6083b878..64db6f98 100644 --- a/apps/gotify/config.json +++ b/apps/gotify/config.json @@ -5,8 +5,8 @@ "port": 8129, "id": "gotify", "exposable": true, - "tipi_version": 1, - "version": "2.1.7", + "tipi_version": 2, + "version": "2.2.4", "categories": ["utilities"], "description": "Simple server for sending and receiving notification messages.", "short_desc": "Gotify, a simple server for sending and receiving notification messages.", diff --git a/apps/gotify/docker-compose.arm.yml b/apps/gotify/docker-compose.arm.yml deleted file mode 100644 index 8c8b53bb..00000000 --- a/apps/gotify/docker-compose.arm.yml +++ /dev/null @@ -1,30 +0,0 @@ -version: "3.7" - -services: - gotify: - image: gotify/server-arm7:2.1.7 - container_name: gotify - restart: unless-stopped - volumes: - - "${APP_DATA_DIR}/data:/app/data" - environment: - - GOTIFY_DEFAULTUSER_PASS=${GOTIFY_DEFAULTUSER_PASS} - ports: - - ${APP_PORT}:80 - networks: - - tipi_main_network - labels: - traefik.enable: ${APP_EXPOSED} - # Traefik Redirect to HTTPS - traefik.http.middlewares.redirect-https.redirectScheme.scheme: https - traefik.http.middlewares.redirect-https.redirectScheme.permanent: true - # Traefik Router + Service Configuration - traefik.http.routers.gotify.rule: Host(`${APP_DOMAIN}`) - traefik.http.routers.gotify.entrypoints: websecure - traefik.http.routers.gotify.tls.certresolver: myresolver - traefik.http.routers.gotify.middlewares: redirect-https - traefik.http.routers.gotify.service: gotify - traefik.http.services.gotify.loadbalancer.passhostheader: true - traefik.http.services.gotify.loadbalancer.server.port: 80 - traefik.http.services.gotify.loadbalancer.sticky: true - traefik.http.middlewares.sslheader.headers.customrequestheaders.X-Forwarded-Proto: http diff --git a/apps/gotify/docker-compose.arm64.yml b/apps/gotify/docker-compose.arm64.yml index 1284452c..02d73011 100644 --- a/apps/gotify/docker-compose.arm64.yml +++ b/apps/gotify/docker-compose.arm64.yml @@ -1,12 +1,12 @@ -version: "3.7" +version: '3.7' services: gotify: - image: gotify/server-arm64:2.1.7 + image: gotify/server-arm64:2.2.4 container_name: gotify restart: unless-stopped volumes: - - "${APP_DATA_DIR}/data:/app/data" + - '${APP_DATA_DIR}/data:/app/data' environment: - GOTIFY_DEFAULTUSER_PASS=${GOTIFY_DEFAULTUSER_PASS} ports: diff --git a/apps/gotify/docker-compose.yml b/apps/gotify/docker-compose.yml index 975723a6..6da3d15a 100644 --- a/apps/gotify/docker-compose.yml +++ b/apps/gotify/docker-compose.yml @@ -1,12 +1,12 @@ -version: "3.7" +version: '3.7' services: gotify: - image: gotify/server:2.1.7 + image: gotify/server:2.2.4 container_name: gotify restart: unless-stopped volumes: - - "${APP_DATA_DIR}/data:/app/data" + - '${APP_DATA_DIR}/data:/app/data' environment: - GOTIFY_DEFAULTUSER_NAME=${GOTIFY_DEFAULTUSER_NAME} - GOTIFY_DEFAULTUSER_PASS=${GOTIFY_DEFAULTUSER_PASS}