Skip to content

Instantly share code, notes, and snippets.

@klesouza
Created April 20, 2017 11:06
Show Gist options
  • Save klesouza/4457bbad0137242f75cc4b56d77c3602 to your computer and use it in GitHub Desktop.
Save klesouza/4457bbad0137242f75cc4b56d77c3602 to your computer and use it in GitHub Desktop.
Bash to start docker machine
#!/bin/bash
if [[ "$(docker-machine ls --filter 'name=default')" == *"Stopped"* ]]
then
docker-machine start default;
eval $(docker-machine env default);
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment