solar/docker.yml
Evgeniy L e3fd0b10e0 It's not required to pull specific docker image for development env
Pulling of specific image should be done during configuration
run.
2015-04-13 16:55:25 +03:00

9 lines
214 B
YAML

- hosts: all
sudo: yes
tasks:
- shell: docker --version
ignore_errors: true
register: docker_version
- shell: curl -sSL https://get.docker.com/ | sudo sh
when: docker_version | failed