diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml
index 524e3bb1b68fb92b4327e08774b694325f921cd4..89aeb123ed135b7e1ce50743f4562941856dda44 100644
--- a/docker-compose.prod.yml
+++ b/docker-compose.prod.yml
@@ -1,7 +1,3 @@
-# INFO: This compose file deploys the official Docker images from a stable, tested master branch
-# MODIFIED: 2024-01-07
-# MAINTAINER: Martin Weise <martin.weise@tuwien.ac.at>
-
 version: "3.6"
 
 volumes:
@@ -18,7 +14,7 @@ services:
     restart: "no"
     container_name: dbrepo-metadata-db
     hostname: metadata-db
-    image: docker.io/dbrepo/metadata-db:1.4
+    image: docker.io/dbrepo/metadata-db:latest
     volumes:
       - metadata-db-data:/bitnami/mariadb
       - ./dist/setup-schema_local.sql:/docker-entrypoint-initdb.d/setup-schema_local.sql
@@ -80,7 +76,7 @@ services:
     restart: "no"
     container_name: dbrepo-authentication-service
     hostname: authentication-service
-    image: docker.io/dbrepo/authentication-service:1.4
+    image: docker.io/dbrepo/authentication-service:latest
     ports:
       - "8443:8443"
       - "8080:8080"
@@ -105,7 +101,7 @@ services:
     restart: "no"
     container_name: dbrepo-metadata-service
     hostname: metadata-service
-    image: docker.io/dbrepo/metadata-service:1.4
+    image: docker.io/dbrepo/metadata-service:latest
     volumes:
       - "${SHARED_FILESYSTEM:-/tmp}:/tmp"
     ports:
@@ -178,7 +174,7 @@ services:
     restart: "no"
     container_name: dbrepo-analyse-service
     hostname: analyse-service
-    image: docker.io/dbrepo/analyse-service:1.4
+    image: docker.io/dbrepo/analyse-service:latest
     ports:
       - "5000:5000"
     environment:
@@ -222,7 +218,7 @@ services:
     restart: "no"
     container_name: dbrepo-search-db
     hostname: search-db
-    image: docker.io/dbrepo/search-db:1.4
+    image: docker.io/dbrepo/search-db:latest
     ports:
       - "9200:9200"
     healthcheck:
@@ -246,7 +242,7 @@ services:
     restart: "no"
     container_name: dbrepo-search-service
     hostname: search-service
-    image: docker.io/dbrepo/search-service:1.4
+    image: docker.io/dbrepo/search-service:latest
     ports:
       - "4000:4000"
     environment:
@@ -258,7 +254,7 @@ services:
     restart: "no"
     container_name: dbrepo-data-db-sidecar
     hostname: data-db-sidecar
-    image: docker.io/dbrepo/data-db-sidecar:1.4
+    image: docker.io/dbrepo/data-db-sidecar:latest
     ports:
       - "3305:3305"
     environment:
@@ -278,7 +274,7 @@ services:
     restart: "no"
     container_name: dbrepo-ui
     hostname: ui
-    image: docker.io/dbrepo/ui:1.4
+    image: docker.io/dbrepo/ui:latest
     volumes:
       - ./dist/dbrepo.config.json:/app/dbrepo.config.json
     depends_on:
@@ -334,7 +330,7 @@ services:
     restart: "no"
     container_name: dbrepo-search-db-init
     hostname: search-db-init
-    image: docker.io/dbrepo/search-db-init:1.4
+    image: docker.io/dbrepo/search-db-init:latest
     environment:
       OPENSEARCH_HOST: ${SEARCH_DB_HOST:-http://search-db:9200}
       CURL_EXTRA_ARGS: ${SEARCH_DB_EXTRA_ARGS:-}
@@ -367,7 +363,7 @@ services:
     restart: "no"
     container_name: dbrepo-storage-service-init
     hostname: storage-service-init
-    image: docker.io/dbrepo/storage-service-init:1.4
+    image: docker.io/dbrepo/storage-service-init:latest
     environment:
       SEAWEEDFS_ENDPOINT: "${STORAGE_SEAWEEDFS_ENDPOINT:-storage-service:9333}"
     depends_on:
@@ -406,7 +402,7 @@ services:
     restart: "no"
     container_name: dbrepo-data-service
     hostname: data-service
-    image: docker.io/dbrepo/data-service:1.4
+    image: docker.io/dbrepo/data-service:latest
     ports:
       - "9093:9093"
     environment:
diff --git a/docker-compose.yml b/docker-compose.yml
index f631f7c033ea2cc1c767dcd3762349c2476f37dd..d783a4b77f19e284f156ec33d33f23ff985555f2 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,7 +1,3 @@
-# INFO: This compose file deploys the official Docker images from a stable, tested master branch
-# MODIFIED: 2024-01-07
-# MAINTAINER: Martin Weise <martin.weise@tuwien.ac.at>
-
 version: "3.6"
 
 volumes: