Comment on How do I stop Docker trying to pull from IPv6?
MysteriousSophon21@lemmy.world 3 days agoTry adding {“ipv6”: false}
to your /etc/docker/daemon.json
file (create it if it doesnt exist), then restart docker with sudo systemctl restart docker
- this forces docker to use IPv4 only.
tychosmoose@piefed.social 2 days ago
This flag seems to only disable ipv6 on the default Docker bridge network, not daemon-wide. At least per this discussion.