diff --git a/server/2.6/Dockerfile b/server/2.6/Dockerfile
index cae967f4..c9fa865f 100644
--- a/server/2.6/Dockerfile
+++ b/server/2.6/Dockerfile
@@ -51,7 +51,11 @@ RUN chmod -R g+w,o+w $SERVER_HOME
 # Stage 2: Final image
 FROM registry.access.redhat.com/ubi8/openjdk-11
 
-ENV SERVER_HOME=/debezium
+LABEL maintainer="Debezium Community"
+
+ENV DEBEZIUM_VERSION=2.6.0.Alpha1 \
+    SERVER_HOME=/debezium \
+    MAVEN_REPO_CENTRAL="https://repo1.maven.org/maven2"
 
 USER root
 RUN microdnf clean all
diff --git a/server/2.6/Dockerfile.local b/server/2.6/Dockerfile.local
index 75d7527c..27647267 100644
--- a/server/2.6/Dockerfile.local
+++ b/server/2.6/Dockerfile.local
@@ -46,6 +46,7 @@ RUN chmod -R g+w,o+w $SERVER_HOME
 # Stage 2: Final image
 FROM registry.access.redhat.com/ubi8/openjdk-11
 
+LABEL maintainer="Debezium Community"
 ENV SERVER_HOME=/debezium
 
 USER root
diff --git a/server/snapshot/Dockerfile b/server/snapshot/Dockerfile
index ab0c6d49..d9c166b8 100644
--- a/server/snapshot/Dockerfile
+++ b/server/snapshot/Dockerfile
@@ -51,7 +51,10 @@ RUN chmod -R g+w,o+w $SERVER_HOME
 # Stage 2: Final image
 FROM registry.access.redhat.com/ubi8/openjdk-11
 
-ENV SERVER_HOME=/debezium
+LABEL maintainer="Debezium Community"
+ENV DEBEZIUM_VERSION=$DEBEZIUM_VERSION \
+    SERVER_HOME=/debezium \
+    MAVEN_OSS_SNAPSHOT="https://oss.sonatype.org/content/repositories/snapshots" 
 
 USER root
 RUN microdnf clean all