Docker networks
Don't use the constructor directly. Instead use
from python_on_whales import docker
my_network = docker.network.create("some-network")
my_network = docker.container.inspect("some-network")
from python_on_whales import Network, docker
def ping_hostname_in_network(my_network: Network):
docker.run("busybox", ["ping", "-c", "10", "my_hostname"], networks=[my_network])
Attributes
It attributes are the same that you get with the command line:
docker network inspect ...
If you want to know the exact structure, you can go to the
docker network inspect reference page
and click on "200 no error".
An example is worth many lines of descriptions.
In [1]: from python_on_whales import docker
In [2]: network = docker.network.create("my-network")
In [3]: container = docker.run(
"ubuntu", ["sleep", "infinity"], name="my_ubuntu", detach=True, networks=[network]
)
In [4]: def super_print(obj):
...: print(f"type={type(obj)}, value={obj}")
...:
In [5]: super_print(network.name)
type = <class 'str'>, value = my-network
In [6]: super_print(network.id)
type = <class 'str'>, value = d6a6a9433070d66413c292b8522a0818a5c90ec519ca513a46eae92a05dba362
In [7]: super_print(network.created)
type = <class 'datetime.datetime'>, value = 2025-10-24 09:07:17.991521+00:00
In [8]: super_print(network.scope)
type = <class 'str'>, value = local
In [9]: super_print(network.driver)
type = <class 'str'>, value = bridge
In [10]: super_print(network.enable_ipv6)
type = <class 'bool'>, value = False
In [11]: super_print(network.ipam.driver)
type = <class 'str'>, value = default
In [12]: super_print(network.ipam.config)
type = <class 'list'>, value = [{'Subnet': '172.19.0.0/16', 'Gateway': '172.19.0.1'}]
In [13]: super_print(network.ipam.options)
type = <class 'dict'>, value = {}
In [14]: super_print(network.internal)
type = <class 'bool'>, value = False
In [15]: super_print(network.attachable)
type = <class 'bool'>, value = False
In [16]: super_print(network.ingress)
type = <class 'bool'>, value = False
In [17]: super_print(network.containers)
type = <class 'dict'>, value = {'30f8a220c0595b149526600b1bb9c9a8cd5e76d2a1e0437cdd218fd214349031': NetworkContainer(name='my_ubuntu', endpoint_id='0b09bd47e473f21543ccc98548056ae2f878338a86622c661845262799942545', mac_address='ba:51:2c:9a:ad:15', ipv4_address='172.19.0.2/16', ipv6_address='')}
In [18]: super_print(network.options)
type = <class 'dict'>, value = {}
In [19]: super_print(network.labels)
type = <class 'dict'>, value = {}
In [20]: super_print(network.config_from)
type = <class 'dict'>, value = {'Network': ''}
In [21]: super_print(network.config_only)
type = <class 'bool'>, value = False
Methods
Network
exists
exists()
Returns True if the network exists and False if it doesn't exist.
If it doesn't exist, that most likely means it was removed.
remove
remove()
Removes this Docker network.
Rather than removing it manually, you can use a context manager to make sure the network is deleted even if an exception is raised.
from python_on_whales import docker
with docker.network.create("some_name") as my_net:
docker.run(
"busybox",
["ping", "idonotexistatall.com"],
networks=[my_net],
remove=True,
)
# an exception will be raised because the container will fail
# but the network will be removed anyway.