Dear Maintainer,
I ran "docker-compose up" with the following docker-compose.yml
version: '3'
services:
nginx:
image: nginx
ports:
- 0.0.0.0:8080:80
- :::8080:80
and found no host IPv6 port was bound to the container, while the IPv4
binding was successful.
I ran a docker engine of version 20.10.5+dfsg1, and successfully bound
host's IPv6 port to the container by the single command "docker run -p
8080:80 nginx", so I believe this is a compose-specific problem.
Besides I also have tested IPv6 port binding for sid (1.27.4-1), and
found the problems persisted.
Cheers,
Songbo Wang