mirror of
https://github.com/containers/podman.git
synced 2025-10-10 07:45:08 +08:00

podman needs a pair of configuration files to set up its default network configuration: a bridge and loopback file. Signed-off-by: baude <bbaude@redhat.com> Closes: #161 Approved by: baude
16 lines
289 B
Plaintext
16 lines
289 B
Plaintext
{
|
|
"cniVersion": "0.3.0",
|
|
"name": "podman",
|
|
"type": "bridge",
|
|
"bridge": "cni0",
|
|
"isGateway": true,
|
|
"ipMasq": true,
|
|
"ipam": {
|
|
"type": "host-local",
|
|
"subnet": "10.88.0.0/16",
|
|
"routes": [
|
|
{ "dst": "0.0.0.0/0" }
|
|
]
|
|
}
|
|
}
|