Skip to content

Instantly share code, notes, and snippets.

@wolfeidau
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wolfeidau/9207210 to your computer and use it in GitHub Desktop.
Save wolfeidau/9207210 to your computer and use it in GitHub Desktop.
Quick and dirty DO docker ansible playbook.

To use this one must note this will docker all the Digital ocean boxes.. You have been warned.

ansible-galaxy install angstwad.docker_ubuntu
ansible-playbook docker.yml -u root -i dohosts
- name: Install pycurl
hosts: all
gather_facts: no
tasks:
- name: Install pycurl
apt: pkg=python-pycurl update_cache=yes cache_valid_time=600
- name: Install Docker on Server
hosts: all
roles:
- angstwad.docker_ubuntu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment