summaryrefslogtreecommitdiffstats
path: root/roles/docker/tasks/install_podman.yml
blob: 3498aa74dde433d17c9c1a0d41f668dec4649e6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- name: Install docker packages
  package: name="{{ item }}" state=present
  with_items:
    - podman
    - buildah
    - skopeo

- name: Install NVIDIA packages
  package: name="{{ item }}" state=present
  with_items:
    - nvidia-container-runtime
  when: "'cuda' in group_names"