From 2034efc1ca1b99e3b39088501aceb27e6cb58cac Mon Sep 17 00:00:00 2001 From: Benjamin Ledel <benjamin@schule-plus.com> Date: Mon, 24 Mar 2025 11:20:19 +0100 Subject: [PATCH] * adjust paths --- .env.sample | 2 +- docker-compose.yml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.env.sample b/.env.sample index cfb9d90..dd6ec52 100644 --- a/.env.sample +++ b/.env.sample @@ -35,4 +35,4 @@ POSTGRES_PASSWORD=CHANGE_ME SP_HOST=polaris.ruhr-uni-bochum.de ANONYMIZATION_HASH_PREFIX=anon ANONYMIZATION_DEFAULT_MINIMUM_COUNT=10 -POLARIS_VERSION=v1.0.1-rc10 \ No newline at end of file +POLARIS_VERSION=v1.0.1-rc11 \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 0c84f37..51fe675 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -34,7 +34,7 @@ services: command: redis-server --requirepass ${REDIS_PASSWORD} rights-engine: - image: registry.git.rwth-aachen.de/polaris/entwicklung/rights-engine/rights-engine:${POLARIS_VERSION} + image: registry.git.rwth-aachen.de/polaris/rights-engine/rights-engine:${POLARIS_VERSION} restart: always ports: - 8004:80 @@ -54,7 +54,7 @@ services: - "./data_disclosure_zips/:/usr/src/app/backend/data_disclosure_zips" beat: - image: registry.git.rwth-aachen.de/polaris/entwicklung/rights-engine/rights-engine:${POLARIS_VERSION} + image: registry.git.rwth-aachen.de/polaris/rights-engine/rights-engine:${POLARIS_VERSION} restart: always entrypoint: celery command: -A backend beat -l info @@ -70,7 +70,7 @@ services: - "./id_rsa:/usr/src/app/backend/id_rsa" worker: - image: registry.git.rwth-aachen.de/polaris/entwicklung/rights-engine/rights-engine:${POLARIS_VERSION} + image: registry.git.rwth-aachen.de/polaris/rights-engine/rights-engine:${POLARIS_VERSION} restart: always entrypoint: celery command: -A backend worker --loglevel=debug @@ -104,7 +104,7 @@ services: command: redis-server --requirepass ${REDIS_PASSWORD} scheduler: - image: registry.git.rwth-aachen.de/polaris/entwicklung/analytics-engine/scheduler:latest + image: registry.git.rwth-aachen.de/polaris/analytics-engine/scheduler:${POLARIS_VERSION} restart: always ports: - 8000:8000 @@ -118,7 +118,7 @@ services: - "./configuration:/app/configuration" beat_analytics: - image: registry.git.rwth-aachen.de/polaris/entwicklung/analytics-engine/scheduler:latest + image: registry.git.rwth-aachen.de/polaris/analytics-engine/scheduler:${POLARIS_VERSION} restart: always entrypoint: celery command: -A scheduler.worker beat -l info --scheduler celery_sqlalchemy_scheduler.schedulers:DatabaseScheduler @@ -132,7 +132,7 @@ services: - "./configuration:/app/configuration" worker_analytics: - image: registry.git.rwth-aachen.de/polaris/entwicklung/analytics-engine/scheduler:latest + image: registry.git.rwth-aachen.de/polaris/analytics-engine/scheduler:${POLARIS_VERSION} restart: always entrypoint: celery command: -A scheduler.worker worker -l info @@ -147,7 +147,7 @@ services: - "./configuration:/app/configuration" dashboard: - image: registry.git.rwth-aachen.de/polaris/entwicklung/dashboard-example/dashboard-example:latest + image: registry.git.rwth-aachen.de/polaris/dashboard-example/dashboard-example:latest restart: always ports: - 8005:80 -- GitLab