Created
March 4, 2020 08:56
-
-
Save dodyagung/3fd1688538f28c8a0b5899f39155241e to your computer and use it in GitHub Desktop.
Could you specifically explain how I would configure the Docker Daemon to only use the 172.*.0.0/16 network ranges in /etc/docker/daemon.json?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cat /etc/docker/daemon.json | |
{ | |
"default-address-pools": | |
[ | |
{"base":"172.17.0.0/16","size":24} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment