You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
304 B
YAML
18 lines
304 B
YAML
|
5 months ago
|
---
|
||
|
|
- name: Install Snapd
|
||
|
|
apt:
|
||
|
|
name: snapd
|
||
|
|
state: present
|
||
|
|
update_cache: yes
|
||
|
|
|
||
|
|
- name: Install Docker via Snap
|
||
|
|
community.general.snap:
|
||
|
|
name: docker
|
||
|
|
state: present
|
||
|
|
|
||
|
|
- name: Ensure Docker service is running
|
||
|
|
service:
|
||
|
|
name: snap.docker.dockerd
|
||
|
|
state: started
|
||
|
|
enabled: yes
|