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