Merge pull request #35 from xarses/fix-docker-installation

apt hangs when it tries to install lxc-docker from ubuntu url on debian
This commit is contained in:
Łukasz Oleś 2015-04-13 17:28:13 +02:00
commit 532fdd59e9

View File

@ -5,6 +5,6 @@
- shell: docker --version
ignore_errors: true
register: docker_version
- shell: curl -sSL https://get.docker.com/ubuntu/ | sudo sh
- shell: curl -sSL https://get.docker.com/ | sudo sh
when: docker_version|failed
- shell: docker pull {{ docker.base_image }}