Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UnixPB: Include installation of docker-buildx plugin for Ubuntu 20+ #3532

Merged
merged 7 commits into from
Apr 25, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@
use: auto # automatic select package manager to use yum, apt and so on
when: (ansible_distribution == "Ubuntu" and ansible_distribution_major_version | int >= 20)

- name: Install docker build on Ubuntu 20+
package:
name:
- docker-buildx
state: present
use: auto # automatic select package manager to use yum, apt and so on
when: (ansible_distribution == "Ubuntu" and ansible_distribution_major_version | int >= 20)

- name: Install for SLES # zypper does not support in package module
include_tasks: sles.yml
when:
Expand Down
Loading