From 14e99b788dad9405c1d029cb67d5701704898f93 Mon Sep 17 00:00:00 2001 From: Florian Schwarz Date: Wed, 8 Jan 2025 14:59:13 +0100 Subject: [PATCH] Update scrumlr version --- deployment/docker/.env.example | 4 ++-- deployment/docker/docker-compose.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deployment/docker/.env.example b/deployment/docker/.env.example index df7f782b64..1e89bc2b91 100644 --- a/deployment/docker/.env.example +++ b/deployment/docker/.env.example @@ -2,7 +2,7 @@ # read more about all env vars at https://docs.scrumlr.io/self-hosting/env-vars/ ## Scrumlr backend -SCRUMLR_BACKEND_VERSION=3.10.0 +SCRUMLR_BACKEND_VERSION=3.10.1 SCRUMLR_SERVER_PORT=8080 SCRUMLR_BASE_PATH="/api" ## Uses the hardcoded insecure key for development @@ -38,7 +38,7 @@ SESSION_SECRET= SCRUMLR_ENABLE_EXPERIMENTAL_AUTH_FILE_SYSTEM_STORE= ## Scrumlr frontend -SCRUMLR_FRONTEND_VERSION=3.10.0 +SCRUMLR_FRONTEND_VERSION=3.10.1 SCRUMLR_LISTEN_PORT=8080 SCRUMLR_SERVER_URL="/api" ## Websocket URL (wss:// or ws://) diff --git a/deployment/docker/docker-compose.yml b/deployment/docker/docker-compose.yml index 6fa3c16cc0..c6467cdfce 100644 --- a/deployment/docker/docker-compose.yml +++ b/deployment/docker/docker-compose.yml @@ -2,7 +2,7 @@ services: scrumlr-backend: restart: always - image: "ghcr.io/inovex/scrumlr.io/scrumlr-server:${SCRUMLR_BACKEND_VERSION:-3.10.0}" + image: "ghcr.io/inovex/scrumlr.io/scrumlr-server:${SCRUMLR_BACKEND_VERSION:-3.10.1}" container_name: scrumlr-backend command: - "/app/main" @@ -51,7 +51,7 @@ services: scrumlr-frontend: restart: always - image: "ghcr.io/inovex/scrumlr.io/scrumlr-frontend:${SCRUMLR_FRONTEND_VERSION:-3.10.0}" + image: "ghcr.io/inovex/scrumlr.io/scrumlr-frontend:${SCRUMLR_FRONTEND_VERSION:-3.10.1}" container_name: scrumlr-frontend environment: SCRUMLR_LISTEN_PORT: "${SCRUMLR_LISTEN_PORT:-8080}"