main.yml 523 B

123456789101112131415161718
  1. ---
  2. # tasks file for docker
  3. - name: Install docker
  4. yum: pkg=docker
  5. - name: enable docker service
  6. command: /usr/bin/systemctl enable docker.service
  7. - name: start the docker service
  8. command: /usr/bin/systemctl start docker.service
  9. - copy: src=enter-container.sh dest=/usr/local/bin/enter-container.sh mode=0755
  10. # From the origin rpm there exists instructions on how to
  11. # setup origin properly. The following steps come from there
  12. - name: Change root to be in the Docker group
  13. command: usermod -G docker -a root