# How to find the kernel version of an image

**URL:** <https://universal-blue.discourse.group/t/how-to-find-the-kernel-version-of-an-image/583>\
**Category:** General\
**Created:** [February 10, 2024, 4:35pm UTC](https://universal-blue.discourse.group/t/how-to-find-the-kernel-version-of-an-image/583 "2024-02-10T16:35:56Z")\
**Posts on this page:** 1\
**Page:** 1

<div class="post-metadata">

**Author:** ![j0rge](https://yyz2.discourse-cdn.com/free1/user_avatar/universal-blue.discourse.group/j0rge/32/8_2.png) [@j0rge](https://universal-blue.discourse.group/u/j0rge)\
**Post date:** [February 10, 2024, 4:35pm UTC](https://universal-blue.discourse.group/t/how-to-find-the-kernel-version-of-an-image/583/1 "2024-02-10T16:35:56Z")

</div>

Sometimes you might need to look up the kernel version of a past image. This is useful if you have a regression in a new kernel and want to find out what image has what kernel. Each container has an `ostree.linux` label that tells you what the version of the kernel in that image is. We use the `skopeo` tool to inspect it:

```
skopeo inspect docker://ghcr.io/ublue-os/bazzite:39-20240210 | grep ostree.linux

```

This returns:

```
"ostree.linux": "6.7.3-200.fc39.x86_64",

```
