I've got Docker 20.10.21 installed on Ubuntu 23.04. I've also run
export DOCKER_CLI_EXPERIMENTAL=enabled
However, when I run docker buildx
, I get
docker: 'buildx' is not a docker command.
See 'docker --help'
I was under the impression that, on Debian-flavored OSes, buildx comes installed with the docker.io
package. How do I get this working?
docker version
shows
Client:
Version: 20.10.21
API version: 1.41
Go version: go1.20.1
Git commit: 20.10.21-0ubuntu3
Built: Tue Feb 28 14:28:22 2023
OS/Arch: linux/amd64
Context: default
Experimental: true
Server:
Engine:
Version: 20.10.21
API version: 1.41 (minimum version 1.12)
Go version: go1.20.1
Git commit: 20.10.21-0ubuntu3
Built: Tue Feb 28 12:17:52 2023
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: 1.6.12-0ubuntu3
GitCommit:
runc:
Version: 1.1.4-0ubuntu3
GitCommit:
docker-init:
Version: 0.19.0
GitCommit:
apt -y install docker.io
. – Daniel W. May 12 '23 at 03:03docker buildx
command, but I think that some buildx-related functionality is removed in the upgrade from '20.10.21' to '24.0.x'. – Brent Bradburn Nov 15 '23 at 20:52