I recently installed Docker Desktop on a new laptop running Ubuntu 22.04, and when I run docker image ls, the TAG column does not exist. Instead, the IMAGE column contains the image name with the tag after a colon, and the headers are much different than I would expect:
$ docker image ls
i Info ā U In Use
IMAGE ID DISK USAGE CONTENT SIZE EXTRA
hello-world:latest f7931603f70e 20.3kB 3.96kB U
I would not be concerned about this except Iām working with Ansible execution environments and their code relies on calling this command and parsing the output.
I have not found any mention of a change to the CLI in the release notes, and all of the examples of this call show the TAG column. I run the same version of Desktop and Engine on MacOS, and the TAG column exists. The output on my Ubuntu laptop also seems āfancierā in that it seems to be using ANSI escapes.
My install is fresh and I havenāt changed any configuration besides adding /tmp as a virtual file share. I canāt find any configuration settings to control the output, and the reference page is not helping. Google searches donāt come back with good hits. AI is confused. At this point Iām starting to feel like Iām the crazy one. Does anyone know why I am getting this output?
Other info:
$ cat /etc/os-release
PRETTY_NAME="Ubuntu 22.04.5 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.5 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
...
$ docker version
Client: Docker Engine - Community
Version: 29.0.2
API version: 1.51 (downgraded from 1.52)
Go version: go1.25.4
Git commit: 8108357
Built: Mon Nov 17 12:33:14 2025
OS/Arch: linux/amd64
Context: desktop-linux
Server: Docker Desktop 4.51.0 (210443)
Engine:
Version: 28.5.2
API version: 1.51 (minimum version 1.24)
Go version: go1.25.3
Git commit: 89c5e8f
Built: Wed Nov 5 14:43:25 2025
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: v1.7.29
GitCommit: 442cb34bda9a6a0fed82a2ca7cade05c5c749582
runc:
Version: 1.3.3
GitCommit: v1.3.3-0-gd842d771
docker-init:
Version: 0.19.0
GitCommit: de40ad0
$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
17eec7bbc9d7: Pull complete
Digest: sha256:f7931603f70e13dbd844253370742c4fc4202d290c80442b2e68706d8f33ce26
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/
$ docker images
i Info ā U In Use
IMAGE ID DISK USAGE CONTENT SIZE EXTRA
hello-world:latest f7931603f70e 20.3kB 3.96kB U
$ cat ~/.docker/config.json
{
"auths": {},
"credsStore": "desktop",
"currentContext": "desktop-linux"
}
$ cat ~/.docker/daemon.json
{
"builder": {
"gc": {
"defaultKeepStorage": "20GB",
"enabled": true
}
},
"experimental": false
}
$ docker context ls
NAME DESCRIPTION DOCKER ENDPOINT ERROR
default Current DOCKER_HOST based configuration unix:///var/run/docker.sock
desktop-linux * Docker Desktop unix:///home/myuser/.docker/desktop/docker.sock
$ ls /home/myuser/.docker/desktop/docker.sock
/home/myuser/.docker/desktop/docker.sock
$ ls /var/run/docker.sock
ls: cannot access '/var/run/docker.sock': No such file or directory
$ dpkg -l | grep docker
ii docker-buildx-plugin 0.30.0-1~ubuntu.22.04~jammy amd64 Docker Buildx plugin extends build capabilities with BuildKit.
ii docker-ce-cli 5:29.0.2-1~ubuntu.22.04~jammy amd64 Docker CLI: the open-source application container engine
ii docker-compose-plugin 2.40.3-1~ubuntu.22.04~jammy amd64 Docker Compose (V2) plugin for the Docker CLI.
ii docker-desktop 4.51.0-210443 amd64 Docker Desktop is ... a lot of text ...