Skip to content

Commit b1e71b3

Browse files
Merge pull request #1589 from elfosardo/install-dockerbuildkit-ubuntu
Install docker buildkit in ubuntu
2 parents 84b85a0 + 3596c5c commit b1e71b3

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"ipv6": {{ DOCKER_IPV6_SUPPORT }},
33
"fixed-cidr-v6": "fd00:d0c4::/32",
4-
"insecure-registries" : ["{{ REGISTRY }}"]
4+
"insecure-registries" : ["{{ REGISTRY }}"],
5+
"features": {
6+
"buildkit": true
7+
}
58
}

vm-setup/roles/packages_installation/tasks/ubuntu_required_packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@
119119
name: "*"
120120
state: latest
121121

122-
- name: Install docker
122+
- name: Install docker and docker plugins
123123
apt: name={{ item }} state=latest update_cache=yes
124-
loop: [ 'docker-ce', 'docker-ce-cli', 'containerd.io' ]
124+
loop: [ 'docker-ce', 'docker-ce-cli', 'containerd.io', 'docker-buildx-plugin', 'docker-compose-plugin']
125125

126126
- name: Create docker configuration dir
127127
file:

0 commit comments

Comments
 (0)