chore(gotify): bump version to 2.2.4

This commit is contained in:
Nicolas Meienberger 2023-04-04 20:24:29 +02:00
parent d08e5b3301
commit 0ce25347de
4 changed files with 8 additions and 38 deletions

View File

@ -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.",

View File

@ -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

View File

@ -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:

View File

@ -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}