diff --git a/.env.sample b/.env.sample
index cfb9d904cca5c52c24dc67ee7cfe81e57be636bc..dd6ec52e04c6cd70c007a7c17038c8fe9966f8c7 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 0c84f37e05a56d4538fedaf4195113b3f4bed876..51fe6757a75c618b5aa06b5bf6218e981833da21 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