summaryrefslogtreecommitdiffstats
path: root/roles/docker/tasks/main.yml
blob: ca700db1770f98124a1f0b6f224298d9dc346b5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
# tasks file for docker
- name: Install docker
  yum: pkg=docker-io

- name: enable and start the docker service
  service: name=docker enabled=yes state=started

- copy: src=enter-container.sh dest=/usr/local/bin/enter-container.sh mode=0755

# From the origin rpm there exists instructions on how to
# setup origin properly.  The following steps come from there
- name: Change root to be in the Docker group
  user: name=root groups=dockerroot append=yes