changed the docker build library to io.fabric8:docker-maven-plugin
diff --git a/custos-rest-proxy/pom.xml b/custos-rest-proxy/pom.xml
index 4af91e5..2db1982 100644
--- a/custos-rest-proxy/pom.xml
+++ b/custos-rest-proxy/pom.xml
@@ -37,42 +37,47 @@
 
     <build>
         <plugins>
-                    <plugin>
-                        <groupId>org.springframework.boot</groupId>
-                        <artifactId>spring-boot-maven-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <configuration>
-                                    <mainClass>org.apache.custos.ide.integration.CustosServer</mainClass>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                    <plugin>
-                        <groupId>com.spotify</groupId>
-                        <artifactId>dockerfile-maven-plugin</artifactId>
-                        <version>${docker.plugin.version}</version>
-                        <executions>
-                            <execution>
-                                <id>container</id>
-                                <goals>
-                                    <goal>build</goal>
-                                    <goal>push</goal>
-                                </goals>
-                            </execution>
-                        </executions>
+            <plugin>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-maven-plugin</artifactId>
+                <executions>
+                    <execution>
                         <configuration>
-                            <noCache>true</noCache>
-                            <serverId>docker.io</serverId>
-                            <repository>${docker.image.prefix}/custos-rest-proxy</repository>
-                            <tag>latest</tag>
-                            <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
-                            <buildArgs>
-                                <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
-                            </buildArgs>
-                            <skip>false</skip>
+                            <mainClass>org.apache.custos.ide.integration.CustosServer</mainClass>
                         </configuration>
-                    </plugin>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>container</id>
+                        <phase>install</phase>
+                        <goals>
+                            <goal>build</goal>
+                            <goal>push</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <images>
+                        <image>
+                            <name>${docker.image.prefix}/custos-rest-proxy:latest</name>
+                            <build>
+                                <dockerFileDir>${project.basedir}</dockerFileDir>
+                                <noCache>true</noCache>
+                                <args>
+                                    <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
+                                </args>
+                            </build>
+                        </image>
+                    </images>
+                    <registry>docker.io</registry>
+                    <skip>false</skip>
+                </configuration>
+            </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-enforcer-plugin</artifactId>
diff --git a/custos-services/custos-core-services-server/pom.xml b/custos-services/custos-core-services-server/pom.xml
index 5b9f299..dfe72c6 100644
--- a/custos-services/custos-core-services-server/pom.xml
+++ b/custos-services/custos-core-services-server/pom.xml
@@ -232,12 +232,12 @@
                 </executions>
             </plugin>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
-                <version>${docker.plugin.version}</version>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <executions>
                     <execution>
                         <id>container</id>
+                        <phase>install</phase>
                         <goals>
                             <goal>build</goal>
                             <goal>push</goal>
@@ -245,14 +245,19 @@
                     </execution>
                 </executions>
                 <configuration>
-                    <noCache>true</noCache>
-                    <serverId>docker.io</serverId>
-                    <repository>${docker.image.prefix}/${project.artifactId}</repository>
-                    <tag>${project.version}</tag>
-                    <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
-                    <buildArgs>
-                        <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
-                    </buildArgs>
+                    <images>
+                        <image>
+                            <name>${docker.image.prefix}/${project.artifactId}:${project.version}</name>
+                            <build>
+                                <dockerFileDir>${project.basedir}</dockerFileDir>
+                                <noCache>true</noCache>
+                                <args>
+                                    <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
+                                </args>
+                            </build>
+                        </image>
+                    </images>
+                    <registry>docker.io</registry>
                     <skip>false</skip>
                 </configuration>
             </plugin>
diff --git a/custos-services/custos-core-services/agent-profile-core-service/pom.xml b/custos-services/custos-core-services/agent-profile-core-service/pom.xml
index e1a253e..3bf98aa 100644
--- a/custos-services/custos-core-services/agent-profile-core-service/pom.xml
+++ b/custos-services/custos-core-services/agent-profile-core-service/pom.xml
@@ -128,8 +128,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-core-services/cluster-management-core-service/pom.xml b/custos-services/custos-core-services/cluster-management-core-service/pom.xml
index 123d131..8c509e7 100644
--- a/custos-services/custos-core-services/cluster-management-core-service/pom.xml
+++ b/custos-services/custos-core-services/cluster-management-core-service/pom.xml
@@ -131,8 +131,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-core-services/credential-store-core-service/pom.xml b/custos-services/custos-core-services/credential-store-core-service/pom.xml
index c008bba..972083f 100644
--- a/custos-services/custos-core-services/credential-store-core-service/pom.xml
+++ b/custos-services/custos-core-services/credential-store-core-service/pom.xml
@@ -161,8 +161,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-core-services/custos-logging/pom.xml b/custos-services/custos-core-services/custos-logging/pom.xml
index 4bb4352..99b61d5 100644
--- a/custos-services/custos-core-services/custos-logging/pom.xml
+++ b/custos-services/custos-core-services/custos-logging/pom.xml
@@ -124,8 +124,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-core-services/custos-messaging-core-service/pom.xml b/custos-services/custos-core-services/custos-messaging-core-service/pom.xml
index 73e6b41..be95e5e 100644
--- a/custos-services/custos-core-services/custos-messaging-core-service/pom.xml
+++ b/custos-services/custos-core-services/custos-messaging-core-service/pom.xml
@@ -146,8 +146,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-core-services/federated-authentication-core-service/pom.xml b/custos-services/custos-core-services/federated-authentication-core-service/pom.xml
index 4217e9e..f84fa36 100644
--- a/custos-services/custos-core-services/federated-authentication-core-service/pom.xml
+++ b/custos-services/custos-core-services/federated-authentication-core-service/pom.xml
@@ -131,8 +131,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-core-services/iam-admin-core-service/pom.xml b/custos-services/custos-core-services/iam-admin-core-service/pom.xml
index b144bb1..0fc2502 100644
--- a/custos-services/custos-core-services/iam-admin-core-service/pom.xml
+++ b/custos-services/custos-core-services/iam-admin-core-service/pom.xml
@@ -125,8 +125,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-core-services/identity-core-service/pom.xml b/custos-services/custos-core-services/identity-core-service/pom.xml
index 548cda8..ef91e60 100644
--- a/custos-services/custos-core-services/identity-core-service/pom.xml
+++ b/custos-services/custos-core-services/identity-core-service/pom.xml
@@ -122,8 +122,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-core-services/resource-secret-core-service/pom.xml b/custos-services/custos-core-services/resource-secret-core-service/pom.xml
index 3b98914..38bf894 100644
--- a/custos-services/custos-core-services/resource-secret-core-service/pom.xml
+++ b/custos-services/custos-core-services/resource-secret-core-service/pom.xml
@@ -178,8 +178,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-core-services/sharing-core-service/pom.xml b/custos-services/custos-core-services/sharing-core-service/pom.xml
index 509eee4..b232e0a 100644
--- a/custos-services/custos-core-services/sharing-core-service/pom.xml
+++ b/custos-services/custos-core-services/sharing-core-service/pom.xml
@@ -136,8 +136,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-core-services/tenant-profile-core-service/pom.xml b/custos-services/custos-core-services/tenant-profile-core-service/pom.xml
index e5cb2f4..6f9a1b7 100644
--- a/custos-services/custos-core-services/tenant-profile-core-service/pom.xml
+++ b/custos-services/custos-core-services/tenant-profile-core-service/pom.xml
@@ -141,8 +141,8 @@
     <build>
         <plugins>
             <plugin>
-               <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-core-services/user-profile-core-service/pom.xml b/custos-services/custos-core-services/user-profile-core-service/pom.xml
index c2d8f48..1d71d54 100644
--- a/custos-services/custos-core-services/user-profile-core-service/pom.xml
+++ b/custos-services/custos-core-services/user-profile-core-service/pom.xml
@@ -113,8 +113,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-external-services-distributions/custos-grpc-web-proxy/pom.xml b/custos-services/custos-external-services-distributions/custos-grpc-web-proxy/pom.xml
index 14107c6..6cea529 100644
--- a/custos-services/custos-external-services-distributions/custos-grpc-web-proxy/pom.xml
+++ b/custos-services/custos-external-services-distributions/custos-grpc-web-proxy/pom.xml
@@ -33,8 +33,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-external-services-distributions/custos-keycloak/pom.xml b/custos-services/custos-external-services-distributions/custos-keycloak/pom.xml
index b2c8fd2..5dd5ba9 100644
--- a/custos-services/custos-external-services-distributions/custos-keycloak/pom.xml
+++ b/custos-services/custos-external-services-distributions/custos-keycloak/pom.xml
@@ -14,8 +14,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-integration-services-server/pom.xml b/custos-services/custos-integration-services-server/pom.xml
index 76f6b02..c31fa71 100644
--- a/custos-services/custos-integration-services-server/pom.xml
+++ b/custos-services/custos-integration-services-server/pom.xml
@@ -238,12 +238,12 @@
                 </executions>
             </plugin>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
-                <version>${docker.plugin.version}</version>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <executions>
                     <execution>
                         <id>container</id>
+                        <phase>install</phase>
                         <goals>
                             <goal>build</goal>
                             <goal>push</goal>
@@ -251,14 +251,19 @@
                     </execution>
                 </executions>
                 <configuration>
-                    <noCache>true</noCache>
-                    <serverId>docker.io</serverId>
-                    <repository>${docker.image.prefix}/${project.artifactId}</repository>
-                    <tag>${project.version}</tag>
-                    <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
-                    <buildArgs>
-                        <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
-                    </buildArgs>
+                    <images>
+                        <image>
+                            <name>${docker.image.prefix}/${project.artifactId}:${project.version}</name>
+                            <build>
+                                <dockerFileDir>${project.basedir}</dockerFileDir>
+                                <noCache>true</noCache>
+                                <args>
+                                    <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
+                                </args>
+                            </build>
+                        </image>
+                    </images>
+                    <registry>docker.io</registry>
                     <skip>false</skip>
                 </configuration>
             </plugin>
diff --git a/custos-services/custos-integration-services/agent-management-service/pom.xml b/custos-services/custos-integration-services/agent-management-service/pom.xml
index 620bcdb..62042c2 100644
--- a/custos-services/custos-integration-services/agent-management-service/pom.xml
+++ b/custos-services/custos-integration-services/agent-management-service/pom.xml
@@ -112,8 +112,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-integration-services/custos-integration-services-swagger/pom.xml b/custos-services/custos-integration-services/custos-integration-services-swagger/pom.xml
index 26c99d3..e080f1e 100644
--- a/custos-services/custos-integration-services/custos-integration-services-swagger/pom.xml
+++ b/custos-services/custos-integration-services/custos-integration-services-swagger/pom.xml
@@ -78,8 +78,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-integration-services/group-management-service/pom.xml b/custos-services/custos-integration-services/group-management-service/pom.xml
index bb4eafc..8dab806 100644
--- a/custos-services/custos-integration-services/group-management-service/pom.xml
+++ b/custos-services/custos-integration-services/group-management-service/pom.xml
@@ -113,8 +113,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-integration-services/identity-management-service/pom.xml b/custos-services/custos-integration-services/identity-management-service/pom.xml
index 157d46f..93ad34b 100644
--- a/custos-services/custos-integration-services/identity-management-service/pom.xml
+++ b/custos-services/custos-integration-services/identity-management-service/pom.xml
@@ -115,8 +115,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-integration-services/log-management-service/pom.xml b/custos-services/custos-integration-services/log-management-service/pom.xml
index bef0ab4..4d0ed21 100644
--- a/custos-services/custos-integration-services/log-management-service/pom.xml
+++ b/custos-services/custos-integration-services/log-management-service/pom.xml
@@ -145,8 +145,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-integration-services/resource-secret-management-service/pom.xml b/custos-services/custos-integration-services/resource-secret-management-service/pom.xml
index 627971d..1ac6f44 100644
--- a/custos-services/custos-integration-services/resource-secret-management-service/pom.xml
+++ b/custos-services/custos-integration-services/resource-secret-management-service/pom.xml
@@ -132,8 +132,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-integration-services/scim-service/pom.xml b/custos-services/custos-integration-services/scim-service/pom.xml
index 3409ef2..9829aa0 100644
--- a/custos-services/custos-integration-services/scim-service/pom.xml
+++ b/custos-services/custos-integration-services/scim-service/pom.xml
@@ -108,8 +108,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-integration-services/sharing-management-service/pom.xml b/custos-services/custos-integration-services/sharing-management-service/pom.xml
index 984f727..9371d26 100644
--- a/custos-services/custos-integration-services/sharing-management-service/pom.xml
+++ b/custos-services/custos-integration-services/sharing-management-service/pom.xml
@@ -123,8 +123,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-integration-services/tenant-management-service/pom.xml b/custos-services/custos-integration-services/tenant-management-service/pom.xml
index eae4e09..57474bb 100644
--- a/custos-services/custos-integration-services/tenant-management-service/pom.xml
+++ b/custos-services/custos-integration-services/tenant-management-service/pom.xml
@@ -129,8 +129,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-services/custos-integration-services/user-management-service/pom.xml b/custos-services/custos-integration-services/user-management-service/pom.xml
index 085a598..7313672 100644
--- a/custos-services/custos-integration-services/user-management-service/pom.xml
+++ b/custos-services/custos-integration-services/user-management-service/pom.xml
@@ -112,8 +112,8 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <configuration>
                     <skip>false</skip>
                 </configuration>
diff --git a/custos-utilities/ide-integration/pom.xml b/custos-utilities/ide-integration/pom.xml
index cf24c2d..f559e8c 100644
--- a/custos-utilities/ide-integration/pom.xml
+++ b/custos-utilities/ide-integration/pom.xml
@@ -133,12 +133,12 @@
                 </executions>
             </plugin>
             <plugin>
-                <groupId>com.spotify</groupId>
-                <artifactId>dockerfile-maven-plugin</artifactId>
-                <version>${docker.plugin.version}</version>
+                <groupId>io.fabric8</groupId>
+                <artifactId>docker-maven-plugin</artifactId>
                 <executions>
                     <execution>
                         <id>container</id>
+                        <phase>install</phase>
                         <goals>
                             <goal>build</goal>
                             <goal>push</goal>
@@ -146,14 +146,19 @@
                     </execution>
                 </executions>
                 <configuration>
-                    <noCache>true</noCache>
-                    <serverId>docker.io</serverId>
-                    <repository>${docker.image.prefix}/keycloak-nginx</repository>
-                    <tag>latest</tag>
-                    <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
-                    <buildArgs>
-                        <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
-                    </buildArgs>
+                    <images>
+                        <image>
+                            <name>${docker.image.prefix}/keycloak-nginx:latest</name>
+                            <build>
+                                <dockerFileDir>${project.basedir}</dockerFileDir>
+                                <noCache>true</noCache>
+                                <args>
+                                    <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
+                                </args>
+                            </build>
+                        </image>
+                    </images>
+                    <registry>docker.io</registry>
                     <skip>false</skip>
                 </configuration>
             </plugin>
diff --git a/pom.xml b/pom.xml
index b5d1a3e..c2b645e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -424,6 +424,15 @@
                 <version>${os.maven.plugin}</version>
             </extension>
         </extensions>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>io.fabric8</groupId>
+                    <artifactId>docker-maven-plugin</artifactId>
+                    <version>${docker.plugin.version}</version>
+                </plugin>
+            </plugins>
+        </pluginManagement>
 
     </build>
 
@@ -461,7 +470,7 @@
 
         <docker.image.prefix>apachecustos</docker.image.prefix>
         <docker.image.repo>custos</docker.image.repo>
-        <docker.plugin.version>1.4.13</docker.plugin.version>
+        <docker.plugin.version>0.43.4</docker.plugin.version>
 
         <helm.maven.plugin.version>2.8.0</helm.maven.plugin.version>
         <maven.assembly.plugin.version>3.2.0</maven.assembly.plugin.version>