init docs

This commit is contained in:
2026-02-22 03:50:15 +02:00
parent 6d3afb53b2
commit 67578b23d0
4 changed files with 79 additions and 1 deletions

16
docs/podman.md Normal file
View File

@@ -0,0 +1,16 @@
# Podman
## Why?
On that server we use podman instead of docker because it's:
- rootless by default
- individual for each user (you won't be able to access container of other person)
- have preinstalled k8s (which is called pod and idk why it's needed for us but it's hella cool)
## How to use?
Exactly the same as docker, but, obviously, instead of `docker` write `podman`. More documentation find [there](https://podman.io/docs)
Maybe (just maybe) you'll need to run this thing (but I still not ceratin if it's necessary):
```sh
systemctl --user enable --now podman.socket
```