2.5 KiB
2.5 KiB
tags
| tags | ||
|---|---|---|
|
Links
- # Why I Ditched Docker for Podman (And You Should Too)
- From Docker Compose to Kubernetes with Podman
- Moving from docker-compose to Podman pods
- Podman: Managing pods and containers in a local container runtime
- Migrating from Docker Compose to Podman Compose: How to Make the Switch
- Moving to Podman from Docker & Docker Compose
- How I got my docker-compose YML to work switching to podman-compose
- Ultimate Docker to Podman Migration Guide: It’s NOT difficult
Installation
podman
sudo apt update
sudo apt install curl gpg gnupg2 software-properties-common apt-transport-https lsb-release ca-certificates -y
source /etc/os-release
wget http://downloadcontent.opensuse.org/repositories/home:/alvistack/Debian_$VERSION_ID/Release.key -O alvistack_key
cat alvistack_key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/alvistack.gpg >/dev/null
echo "deb http://downloadcontent.opensuse.org/repositories/home:/alvistack/Debian_$VERSION_ID/ /" | sudo tee /etc/apt/sources.list.d/alvistack.list
sudo apt update
sudo apt install podman python3-podman-compose
Podman Desktop
flatpak für Linux
flatpak remote-add --if-not-exists --user flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install --user flathub io.podman_desktop.PodmanDesktop
flatpak run io.podman_desktop.PodmanDesktop
flatpak update --user io.podman_desktop.PodmanDesktop
Konfiguration
WSL
Ändern der /etc/wsl.conf
[boot]
systemd=true
command="mount --make-rshared /"
[user]
default=tpeetz