mirror of
https://github.com/weaveworks/scope.git
synced 2026-07-28 09:41:57 +00:00
16 lines
399 B
YAML
16 lines
399 B
YAML
---
|
|
# Set up Docker
|
|
# See also: legacy gce.sh script
|
|
|
|
- include_role:
|
|
name: docker-prerequisites
|
|
|
|
- name: add apt key for the docker repository
|
|
shell: curl -sSL https://get.docker.com/gpg | sudo apt-key add -
|
|
|
|
- name: install docker
|
|
shell: 'curl -sSL https://get.docker.com/ | sed -e s/docker-engine/docker-engine={{ docker_version }}*/ | sh'
|
|
|
|
- include_role:
|
|
name: docker-configuration
|