docker network create

1 개요[ | ]

docker network create
root@localhost:~# docker network create network1
304aa0552b72feffdd720ac5484d5825440adbd74dffa3c3710ca043e692f785
root@localhost:~# docker network inspect network1
[
    {
        "Name": "network1",
        "Id": "304aa0552b72feffdd720ac5484d5825440adbd74dffa3c3710ca043e692f785",
        "Created": "2019-12-23T17:45:14.371345671+09:00",
        "Scope": "local",
        "Driver": "bridge",
        "EnableIPv6": false,
        "IPAM": {
            "Driver": "default",
            "Options": {},
            "Config": [
                {
                    "Subnet": "172.18.0.0/16",
                    "Gateway": "172.18.0.1"
                }
            ]
        },
        "Internal": false,
        "Attachable": false,
        "Ingress": false,
        "ConfigFrom": {
            "Network": ""
        },
        "ConfigOnly": false,
        "Containers": {},
        "Options": {},
        "Labels": {}
    }
]

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}