Created
March 22, 2016 04:24
-
-
Save skuenzli/e84d0c96c5053dfd948c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e | |
| docker-machine create --driver virtualbox docker-birthday | |
| eval $(docker-machine env docker-birthday) | |
| for image in hello-world alpine seqvence/static-site mhart/alpine-node python:2.7-alpine manomarks/worker redis:alpine postgres:9.4; do docker pull ${image}; done; | |
| docker images |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment