You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It turns out that there is an opencontainer data standard which OCI images have which exports some useful information I want to make available in cockpit-podman for myself as it is generally useful and awesome. The information is:
Most notably I want to be able to see a Description, Documentation link, and version. A hacky version of this is shown here:
And could be also show in the existing details tab:
Here the Description is super useful, showing what the image is before potentially deleting it. A link to its docs can be useful as it might be helpful to figure out how to run this container.
I also want to have the Version, and maybe links? Shown in the container overview. When using the latest tag for images it is useful to be able to check if a quadlet was auto-updated by showing the image version metadata.
If you want to know what images have Labels:
podman images --format '{{.Names}} {{.Labels}}'
For me most of my applications have Labels set:
[docker.io/koenkk/zigbee2mqtt:latest] map[org.opencontainers.image.authors:Koen Kanters org.opencontainers.image.description:Zigbee to MQTT bridge using Zigbee-herdsman org.opencontainers.image.documentation:https://www.zigbee2mqtt.io/ org.opencontainers.image.source:https://github.com/Koenkk/zigbee2mqtt org.opencontainers.image.title:zigbee2mqtt org.opencontainers.image.url:https://github.com/Koenkk/zigbee2mqtt]
[docker.io/jellyfin/jellyfin:latest] map[org.opencontainers.image.description:The Free Software Media System org.opencontainers.image.documentation:https://jellyfin.org/docs/ org.opencontainers.image.source:https://github.com/jellyfin/jellyfin-packaging org.opencontainers.image.title:Jellyfin org.opencontainers.image.url:https://jellyfin.org org.opencontainers.image.version:10.10.0]
The text was updated successfully, but these errors were encountered:
It turns out that there is an opencontainer data standard which OCI images have which exports some useful information I want to make available in cockpit-podman for myself as it is generally useful and awesome. The information is:
Most notably I want to be able to see a Description, Documentation link, and version. A hacky version of this is shown here:
And could be also show in the existing details tab:
Here the Description is super useful, showing what the image is before potentially deleting it. A link to its docs can be useful as it might be helpful to figure out how to run this container.
I also want to have the Version, and maybe links? Shown in the container overview. When using the
latest
tag for images it is useful to be able to check if a quadlet was auto-updated by showing the image version metadata.If you want to know what images have Labels:
For me most of my applications have Labels set:
The text was updated successfully, but these errors were encountered: