From 76a88bb0c83bd610465a08e9bbb71a0ddf9b359a 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 3d55d50498..6b6d8c4ca5 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 24b66669cc..d60884db99 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}"