---
title: podman
kind: note
description: Docker alternative
words: 63
readingMinutes: 1
created: '2024-07-20T00:00:00.000Z'
updated: '2024-07-22T19:51:41+02:00'
website: https://podman.io/
---
## Link

<https://podman.io/>

## Resources
- [Podman Desktop](https://podman-desktop.io/) ^7cfae6
## Alternatives
- [Docker](/notes/docker)
## FAQ
### "Using cgroups-v1 which is deprecated in favor of cgroups-v2 with Podman v5 and will be removed in a future version." when running Podman Desktop on WSL2
1. Create or edit the file `%UserProfile%\.wslconfig` as follows:
	```
	[wsl2]
	kernelCommandLine = cgroup_no_v1=all
	```
2. Shutdown WSL:
	```powershell
	wsl --shutdown
	```
3. Click the Run button in the Dashboard of Podman Desktop to restart the WSL container with cgroups-v2.
