Created
July 3, 2020 05:24
-
-
Save tsuchm/e40b17af389321e4858e48eb51a49eb3 to your computer and use it in GitHub Desktop.
Ansible playbook to install buildah and podman
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/containers/buildah/blob/master/install.md | |
- name: Add buildah repository key | |
apt_key: | |
url: https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable/Debian_10/Release.key | |
state: present | |
- name: Enable buildah repository | |
apt_repository: | |
repo: deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_10/ / | |
update_cache: yes | |
filename: buildah | |
- name: Install buildah package | |
apt: | |
name: ['buildah', 'podman'] | |
state: latest | |
update_cache: yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment