@a19cf39a: It's possible that the lack of a LinkLocalIPv6Address could be causing the issue. Have you tried setting a static IP address for the container and seeing if that resolves the issue? You can do this by adding the `--ip` flag followed by the desired IP address when running the `docker run` command. For example:
```
docker run --ip 172.18.0.2 myimage
```
You can replace `myimage` with the name of your MySQL image.