docker: デフォルトネットワークの設定
docker はデフォルトで172.17以下をサブネットに使用する
デフォルトのネットワークとコンフリクトが発生する際は、以下のように、dockerが作成するデフォルトネットワークを設定することが可能
/etc/docker/daemon.json(存在しない場合は新規作成する)
{
"bip": "172.26.0.1/16",
"default-address-pools" : [
{
"base" : "172.240.0.0/16",
"size" : 24
}
]
}
terminalでdockerを再起動
sudo systemctl restart docker
その他コマンド一覧
# networkのid一覧を表示
docker network list
# ネットワーク id xxxxxx のサブネットを表示
docker network inspect xxxxxxx
# ネットワーク id xxxxxx を削除(コンフリクトしている場合)
docker network rm xxxxxxx
Author And Source
この問題について(docker: デフォルトネットワークの設定), 我々は、より多くの情報をここで見つけました https://qiita.com/pus/items/f082397bba1e29274d51著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .