Skip to content

Instantly share code, notes, and snippets.

@derjohn
Last active July 13, 2023 14:25
Show Gist options
  • Save derjohn/0f283897e3863a2b0ad93aaf63fee4ce to your computer and use it in GitHub Desktop.
Save derjohn/0f283897e3863a2b0ad93aaf63fee4ce to your computer and use it in GitHub Desktop.
Docker Config with IP address range that does not collide with the Wifi of Deutsche Bahn DB
/etc/docker/daemon.json
{
"bip" : "172.70.0.1/16",
"fixed-cidr" : "172.70.16.0/20",
"log-level" : "info",
"default-address-pools" : [
{"base" : "172.80.0.0/16", "size" : 24 },
{"base" : "172.90.0.0/16", "size" : 24 }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment