Files
servercode/podman.txt
IntenseWebs 39a01c5bd2 Added Podman
2025-01-19 06:35:29 -06:00

25 lines
565 B
Plaintext

# Add alias docker=podman in your .bashrc
podman -v
sudo systemctl status podman.socket
# Install:
sudo dnf install podman
sudo systemctl enable --now podman.socket
---------------------------------------------
sudo systemctl status cockpit.socket
# Install Cockpit
sudo dnf install cockpit cockpit-podman
# Start Cockpit Socket
sudo systemctl enable --now cockpit.socket
# Open Firewall (if needed)
sudo firewall-cmd --add-service=cockpit --permanent
sudo firewall-cmd --add-service=cockpit
# Run a test container
podman run --rm busybox echo "hello world"