Skip to content

Commit

Permalink
fix for pulling base images
Browse files Browse the repository at this point in the history
  • Loading branch information
bartdevylder committed May 9, 2017
1 parent 3d189bf commit 82d9dc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ NAME=${1:-all}

docker login -u "$REGISTRY_USERNAME" -p "$REGISTRY_PASSWORD" -e "$REGISTRY_EMAIL" $REGISTRY

if ["$NAME" == "base"]; then
if [ "$NAME" == "base" ]; then
for SERVICE in base python java7 java8 rserve numpy; do
IMG=coscale/$SERVICE:1.0.0
docker pull $REGISTRY/$IMG
Expand Down

0 comments on commit 82d9dc4

Please sign in to comment.