From 2a62f77ae7b326f679fb66491139b8a87d79abdd Mon Sep 17 00:00:00 2001 From: gabalafou Date: Mon, 22 Jul 2024 12:45:52 -0400 Subject: [PATCH] Bump default CONDA_STORE_SERVER_VERSION (#409) --- .env.example | 2 +- docker-compose.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 9240cc9b..9f8e51bc 100644 --- a/.env.example +++ b/.env.example @@ -23,4 +23,4 @@ REACT_APP_LOGOUT_PAGE_URL=http://localhost:8080/conda-store/logout?next=/ # If you want to use a version other than the pinned conda-store-server version # Set the CONDA_STORE_SERVER_VERSION to the package version that you want -# CONDA_STORE_SERVER_VERSION="2023.10.1" +# CONDA_STORE_SERVER_VERSION="2024.3.1" diff --git a/docker-compose.yml b/docker-compose.yml index 23771166..50389f77 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.8" services: conda-store-worker: - image: quansight/conda-store-server:${CONDA_STORE_SERVER_VERSION:-2023.10.1} + image: quansight/conda-store-server:${CONDA_STORE_SERVER_VERSION:-2024.3.1} volumes: - ./docker/assets/environments:/opt/environments:ro - ./docker/assets/conda_store_config.py:/opt/conda_store/conda_store_config.py:ro @@ -18,7 +18,7 @@ services: ] conda-store-server: - image: quansight/conda-store-server:${CONDA_STORE_SERVER_VERSION:-2023.10.1} + image: quansight/conda-store-server:${CONDA_STORE_SERVER_VERSION:-2024.3.1} depends_on: postgres: condition: service_healthy