added podman notes for portainer

This commit is contained in:
2024-07-20 11:43:49 -07:00
parent f7d986b0f0
commit 0c4bb4a289
+12 -1
View File
@@ -54,4 +54,15 @@ You will likely want to spit up the agent and GUI in your projects.
### Podman
Make sure podman-docker is installed.
Make sure podman-docker is installed.
```sudo dnf install podman-docker```
Create the necessary directory for Podman
```bash
sudo mkdir -p /run/podman
sudo chmod 755 /run/podman
# Restart Podman socket service
sudo systemctl restart podman.socket
# Check the status of the Podman socket
sudo systemctl status podman.socket
```