15 lines
260 B
YAML
15 lines
260 B
YAML
|
|
---
|
||
|
|
- name: Install podman
|
||
|
|
ansible.builtin.yum:
|
||
|
|
name:
|
||
|
|
- podman
|
||
|
|
- podman-compose
|
||
|
|
- podman-docker
|
||
|
|
- buildah
|
||
|
|
update_cache: yes
|
||
|
|
|
||
|
|
- name: Enable Podman
|
||
|
|
ansible.builtin.systemd:
|
||
|
|
name: podman
|
||
|
|
state: started
|
||
|
|
enabled: yes
|