-
Trying to run dovecot IMAP server as a rootless podman container via Quadlet with this
I have this in my local configuration folder:
However, when I look into the running container both
What I am doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
If you use podman run you create a new container and you do not mount the volume there at all so it just shows you the image content. If you want to execute commands in an existing running container you have to use |
Beta Was this translation helpful? Give feedback.
-
On Mon May 27, 2024 at 11:22 AM CEST, Paul Holzinger wrote:
If you use podman run you create a new container and you do not mount the volume there at all so it just shows you the image content. If you want to execute commands in an existing running container you have to use `podman exec`
I don’t understand: that cannot be correct. When I start the container with `systemctl --user start` (or `systemctl --user daemon-reexec`), `podman run` with that container still doesn’t show the missing files.
|
Beta Was this translation helpful? Give feedback.
If you use podman run you create a new container and you do not mount the volume there at all so it just shows you the image content. If you want to execute commands in an existing running container you have to use
podman exec