Record and display the version of the container runtime in the list
- Dominant language
- Go
- Stars
- 21.9k
- Forks
- 957
- Avg merge
- 2d 6h
- Merged PRs (30d)
- 53
Description
### Description
One nice feature from docker-machine was that it shows the container runtime version in the list:
```
NAME ACTIVE DRIVER STATE URL SWARM DOCKER ERRORS
default - qemu Running tcp://127.0.0.1:33793 v20.10.12
```
But one shortcoming of that, is that it only works when the machine is running. It would be nice if it was cached...
```
NAME ACTIVE DRIVER STATE URL SWARM DOCKER ERRORS
default - qemu Stopped Unknown
```
This could be automated, so that the information is populated automatically. It only needs to know _which_ runtime.
```yaml
engine: "containerd"
rootless: true
```
If the information is not available in the template, then the version would just stay empty (until it is edited in)
----
We could use some combined syntax like kubernetes, to combine the engine name with the engine version?
```
... OS-IMAGE KERNEL-VERSION CONTAINER-RUNTIME
... Debian GNU/Linux 11 (bullseye) 5.4.0-149-generic containerd://1.6.21
```
The system information is also nice to have, but there is already a separate issue for that (OS and Kernel)
* #840
Contributor guide
Assessment
This issue has not been assessed yet.