-
Notifications
You must be signed in to change notification settings - Fork 508
Labels
good first issueGood for newcomersGood for newcomers
Description
Feature or enhancement request details
Similar to #302,
The creation date field will help describe the network(s), and will help with streamline the UX experience compared to other container tools.
Example from podman:
podman network inspect podman
[
{
"name": "podman",
"id": "2f259bab93aaaaa2542ba43ef33eb990d0999ee1b9924b557b7be53c0b7a1bb9",
"driver": "bridge",
"network_interface": "podman0",
"created": "2025-09-22T20:22:23.222759857+03:00",
"subnets": [
{
"subnet": "10.88.0.0/16",
"gateway": "10.88.0.1"
}
],
"ipv6_enabled": false,
"internal": false,
"dns_enabled": false,
"ipam_options": {
"driver": "host-local"
},
"containers": {}
}
]
Compared to current details returned:
container network inspect default | jq .
[
{
"id": "default",
"config": {
"id": "default",
"mode": "nat"
},
"state": "running",
"status": {
"address": "192.168.64.0/24",
"gateway": "192.168.64.1"
}
}
]
Code of Conduct
- I agree to follow this project's Code of Conduct
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers