diff options
Diffstat (limited to 'windriver')
-rw-r--r-- | windriver/pom.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/windriver/pom.xml b/windriver/pom.xml index 1eb5a1c6..7299038d 100644 --- a/windriver/pom.xml +++ b/windriver/pom.xml @@ -154,21 +154,21 @@ <exec executable="docker"> <arg value="build"/> <arg value="-t"/> - <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:${project.version}"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-windriver:${project.version}"/> <arg value="docker_target"/> </exec> <exec executable="docker"> <arg value="tag"/> - <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:${project.version}"/> - <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:latest"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-windriver:${project.version}"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-windriver:latest"/> </exec> <exec executable="docker"> <arg value="push"/> - <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:${project.version}"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-windriver:${project.version}"/> </exec> <exec executable="docker"> <arg value="push"/> - <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:latest"/> + <arg value="${CONTAINER_PUSH_REGISTRY}/onap/multicloud/openstack-windriver:latest"/> </exec> </target> </configuration> |