diff options
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/launch_docker_container.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ci/launch_docker_container.sh b/ci/launch_docker_container.sh index b119946..ec9c4d8 100755 --- a/ci/launch_docker_container.sh +++ b/ci/launch_docker_container.sh @@ -29,7 +29,12 @@ then sudo chown 33:33 job/carbon fi -docker pull opnfv/storperf:latest +if [ -z $DOCKER_TAG ] +then + DOCKER_TAG=latest +fi + +docker pull opnfv/storperf:$DOCKER_TAG docker run -d --env-file `pwd`/job/admin.rc \ -p 5000:5000 \ |