Skip to content

[Request]: Add Creation Date in Network Metadata #665

@vkhitrin

Description

@vkhitrin

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

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions