Run a command in a new Podman container. More information: https://docs.podman.io/en/latest/markdown/podman-run.1.html.
podman run image:tag command
podman run --detach image:tag command
podman run --rm --interactive --tty image:tag command
podman run --env 'variable=value' --env variable image:tag command
podman run --volume /path/to/host_path:/path/to/container_path image:tag command
podman run --publish host_port:container_port image:tag command
podman run --entrypoint command image:tag
podman run --network network image:tag