Skip to content

Instantly share code, notes, and snippets.

@skuenzli
Created March 22, 2016 04:24
Show Gist options
  • Select an option

  • Save skuenzli/e84d0c96c5053dfd948c to your computer and use it in GitHub Desktop.

Select an option

Save skuenzli/e84d0c96c5053dfd948c to your computer and use it in GitHub Desktop.
#!/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