This message was deleted.
# general
a
This message was deleted.
c
how can I mount a local directory to the podman container?
It creates a new volume and uses it. Why?
Copy code
podman run -it -p 8000:8000 .... -v $(pwd)/app:/app
s
You should really try a Podman forum instead, surely there's something out there.
c
the solution was: 🙂
podman run --rm -it -p 8000:8000 --name myapp --hostname myapp -v $(pwd)/app:/app:Z  fedora:myapp