I have 2 project:
Old Project (not use): light.local (8001 for http)
New Project: lightla.local (8001 for http, 8443 for https)
all same local host: 127.0.0.1
I delete all, no have any container, no have any volumn, but light.local still worked
I try everything but still worked.
docker compose down --volumes --remove-orphans
docker system prune -af --volumes
wsl --shutdown, wsl
Hi, thanks you support, I use docker on wsl2 windows
Windows WSL2
Ubuntu 22.04.5 LTS
docker version
version: 27.5.1
Client:
Version: 27.5.1
API version: 1.47
Go version: go1.22.2
Git commit: 27.5.1-0ubuntu3~22.04.2
Built: Mon Jun 2 12:18:38 2025
OS/Arch: linux/amd64
Context: default
Server:
Engine:
Version: 27.5.1
API version: 1.47 (minimum version 1.24)
Go version: go1.22.2
Git commit: 27.5.1-0ubuntu3~22.04.2
Built: Mon Jun 2 12:18:38 2025
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: 1.7.24
GitCommit:
runc:
Version: 1.1.12-0ubuntu2~22.04.1
GitCommit:
docker-init:
Version: 0.19.0
GitCommit:
docker info # I just delete Docker Desktop after issue docker-proxy
Client:
Version: 27.5.1
Context: default
Debug Mode: false
Plugins:
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-ai" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-ai: input/output error
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-buildx" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-buildx: input/output error
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-cloud" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-cloud: input/output error
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-compose" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-compose: input/output error
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-debug" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-debug: input/output error
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-desktop" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-desktop: input/output error
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-dev" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-dev: input/output error
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-extension" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-extension: input/output error
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-init" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-init: input/output error
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-mcp" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-mcp: input/output error
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-sbom" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-sbom: input/output error
WARNING: Plugin "/usr/local/lib/docker/cli-plugins/docker-scout" is not valid: failed to fetch metadata: fork/exec /usr/local/lib/docker/cli-plugins/docker-scout: input/output error
Server:
Containers: 6
Running: 5
Paused: 0
Stopped: 1
Images: 6
Server Version: 27.5.1
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Using metacopy: false
Native Overlay Diff: true
userxattr: false
Logging Driver: json-file
Cgroup Driver: systemd
Cgroup Version: 2
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
Swarm: inactive
Runtimes: io.containerd.runc.v2 runc
Default Runtime: runc
Init Binary: docker-init
containerd version:
runc version:
init version:
Security Options:
seccomp
Profile: builtin
cgroupns
Kernel Version: 6.6.87.2-microsoft-standard-WSL2
Operating System: Ubuntu 22.04.5 LTS
OSType: linux
Architecture: x86_64
CPUs: 16
Total Memory: 7.602GiB
Name: DESKTOP-OPSNBJQ
ID: f269dd7e-9dce-42fb-a081-138eb56e1ec8
Docker Root Dir: /var/lib/docker
Debug Mode: false
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
dpkg -l 'docker*' | grep '^ii'
ii docker-compose-v2 2.27.1+ds1-0ubuntu1~22.04.1 amd64 tool for running multi-container applications on Docker
ii docker.io 27.5.1-0ubuntu3~22.04.2 amd64 Linux container runtime
snap list docker
=> error: no matching snaps installed
It seems that you are not using the Docker CE package supported by Docker Inc. So if there is a bug in that docker.io package, that could be fixed by the maintainers of Ubuntu who are the maintainers of the docker.io package as well (or fixed in the moby project. More about that later).
Here is the official guide for the installation of Docker CE on Ubuntu
I canât tell you if the problem is that you are using the docker.io package or something totally unrelated, but if there was a bug in Docker at some point it was probably fixed as I could not reproduce it with Docker CE 28.1.1 in a test virtual Ubuntu 24.04 machine.
So if a knewer version of docker.io is available, you can try to update to that version. If there is no new version, I recommend installing Docker CE or contacting the Ubuntu maintainers. You can also continue discussing the issue here, since we donât know if it is a bug in Docker CE as well (until we test the issue with Docker CE 27.5.1).
I think v27 is still supported, so if we can reproduce the issue in that, you could report it in the moby repository
This is the base of the docker.io package as well.
And I found that this issue happened with Docker 20.10 once, so I can imagine it returning
If you have a way to test Docker CE 27.5.1 and reproduce the same issue in a test environment that could speed up the debugging
Hi there, I had the same issue. I was trying to run Grafana on port 3000 on my server, but Dockerâs proxy was also binding port 3000, blocking traffic. I couldnât start Grafana until I fixed it. Hereâs how I solved it: