Skip to content

Instantly share code, notes, and snippets.

@nandotorres
Last active December 11, 2016 17:04
Show Gist options
  • Save nandotorres/7152b73a33feb4efa55319eeacf08b9a to your computer and use it in GitHub Desktop.
Save nandotorres/7152b73a33feb4efa55319eeacf08b9a to your computer and use it in GitHub Desktop.
Recipe to install docker and running ToDo App container
execute 'install docker' do
command 'curl -sSL https://get.docker.com/ | sh'
end
execute 'restart docker service' do
command 'sudo service docker restart'
end
execute 'run application container' do
command 'docker run -d -p 80:3000 --restart=always nandotorres/mean-todo'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment