ansible/roles/docker/tasks/main.yml
Markus Hauschild 73a9300408
Some checks reported errors
continuous-integration/drone/push Build was killed
docker: also enable the service
2021-09-29 17:41:47 +02:00

11 lines
154 B
YAML

---
- name: Install docker
apt:
name:
- docker.io
- python3-docker
- name: Enable docker
service: name=docker state=started enabled=yes