Last active
August 14, 2019 09:57
-
-
Save mrhockeymonkey/0e3634fd5adf26b9d4bb553054cfccd6 to your computer and use it in GitHub Desktop.
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
PS D:\fluffy-basson> docker network ls | |
NETWORK ID NAME DRIVER SCOPE | |
tsrtjyvcnda9 dsc_net overlay swarm | |
kecsl0ygqz7v ingress overlay swarm | |
250269d47835 nat nat local | |
262286df0819 none null local | |
PS D:\fluffy-basson> docker inspect dsc_net | |
[ | |
{ | |
"Name": "dsc_net", | |
"Id": "tsrtjyvcnda9fweokqig7snzy", | |
"Created": "2019-08-14T09:53:44.5955035Z", | |
"Scope": "swarm", | |
"Driver": "overlay", | |
"EnableIPv6": false, | |
"IPAM": { | |
"Driver": "default", | |
"Options": null, | |
"Config": [ | |
{ | |
"Subnet": "10.0.0.0/24", | |
"Gateway": "10.0.0.1" | |
} | |
] | |
}, | |
"Internal": false, | |
"Attachable": true, | |
"Ingress": false, | |
"ConfigFrom": { | |
"Network": "" | |
}, | |
"ConfigOnly": false, | |
"Containers": null, | |
"Options": { | |
"com.docker.network.driver.overlay.vxlanid_list": "4097" | |
}, | |
"Labels": null | |
} | |
] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment