diff options
author | Michael Arrastia <MArrasti@amdocs.com> | 2018-04-04 10:57:49 +0100 |
---|---|---|
committer | Michael Arrastia <MArrasti@amdocs.com> | 2018-04-04 10:57:49 +0100 |
commit | 0f37da8817f3b60f21b1ed18dc8a7e801b72586c (patch) | |
tree | d9d31d3cdd73ffe384c1bc5b4364a5e2e51ca6eb | |
parent | 4e2284d827b71fa9db20f5c3756095a0ade73044 (diff) |
Fix references to champ docker image name
The name of the docker image is champ, not champ-service.
Issue-ID: AAI-993
Change-Id: I79ca5d70d287ece558ce44926672fe3b49ffa67f
Signed-off-by: Michael Arrastia <MArrasti@amdocs.com>
-rwxr-xr-x | deploy_vm1.sh | 4 | ||||
-rw-r--r-- | docker-compose-app.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/deploy_vm1.sh b/deploy_vm1.sh index c07eb96..0224914 100755 --- a/deploy_vm1.sh +++ b/deploy_vm1.sh @@ -142,8 +142,8 @@ docker tag $DOCKER_REGISTRY/onap/model-loader:$DOCKER_IMAGE_VERSION $DOCKER_REGI docker pull ${DOCKER_REGISTRY}/onap/sparky-be:${DOCKER_IMAGE_VERSION}; docker tag $DOCKER_REGISTRY/onap/sparky-be:$DOCKER_IMAGE_VERSION $DOCKER_REGISTRY/onap/sparky-be:latest; -docker pull ${DOCKER_REGISTRY}/onap/champ-service:${DOCKER_IMAGE_VERSION}; -docker tag $DOCKER_REGISTRY/onap/champ-service:$DOCKER_IMAGE_VERSION $DOCKER_REGISTRY/onap/champ-service:latest; +docker pull ${DOCKER_REGISTRY}/onap/champ:${DOCKER_IMAGE_VERSION}; +docker tag $DOCKER_REGISTRY/onap/champ:$DOCKER_IMAGE_VERSION $DOCKER_REGISTRY/onap/champ:latest; docker pull ${DOCKER_REGISTRY}/onap/crud-service:${DOCKER_IMAGE_VERSION}; docker tag $DOCKER_REGISTRY/onap/crud-service:$DOCKER_IMAGE_VERSION $DOCKER_REGISTRY/onap/crud-service:latest; diff --git a/docker-compose-app.yml b/docker-compose-app.yml index 15831be..c9c2931 100644 --- a/docker-compose-app.yml +++ b/docker-compose-app.yml @@ -137,7 +137,7 @@ services: max-file: "5" champ-service: - image: ${DOCKER_REGISTRY}/onap/champ-service + image: ${DOCKER_REGISTRY}/onap/champ hostname: champ-service volumes: - ${CHAMP_LOGS}:/logs |