this post was submitted on 04 Oct 2023
2 points (100.0% liked)

Podman

103 readers
1 users here now

founded 1 year ago
MODERATORS
 

Is it possible to run a alpine image to run an executable that is inside a volume without creating a new image? In Podman Desktop, I placed the following values in these fields when running the alpine image into a new container.

Command

/bin/sh -c /server/application

Volumes

~/Documents/server-data:/server

Ports

8080:8080

However I always get this error in my container logs. I think it could be due to the fact the container does not have permission to execute /server/application?

/bin/sh: /server/application: not found

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 year ago

You can test your theory run this

touch foo <