-
Build
podman build -t simple:latest .
-
Run
podman run simple:latest
-
Check if it is running
podman ps
-
Interaction
podman run -it --entrypoint /bin/bash simple:latest
-
View logs
podman ps podman logs -f <containerID>
-
Edit Dockerfile and launch again (without build)