EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit 94058246 authored by Mussab Abdalla's avatar Mussab Abdalla
Browse files

avoid unnecessary re-pull

parent c29fe380
No related branches found
No related tags found
No related merge requests found
......@@ -83,16 +83,16 @@ test:
- ./env_setup.sh
- mkdir data
- IMAGE="$CI_REGISTRY_IMAGE/pvs_core"
- docker pull "$IMAGE"
- docker pull "$IMAGE" || true
- docker tag "$IMAGE" "$IMAGE:latest"
- IMAGE="$CI_REGISTRY_IMAGE/pvs_cache"
- docker pull "$IMAGE"
- docker pull "$IMAGE" || true
- docker tag "$IMAGE" "$IMAGE:latest"
- IMAGE="$CI_REGISTRY_IMAGE/pvs_preprocessor"
- docker pull "$IMAGE"
- docker pull "$IMAGE" || true
- docker tag "$IMAGE" "$IMAGE:latest"
- IMAGE="$CI_REGISTRY_IMAGE/pvs_client"
- docker pull "$IMAGE"
- docker pull "$IMAGE" || true
- docker tag "$IMAGE" "$IMAGE:latest"
- docker swarm init
- docker network create -d overlay emg-extnet
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment