-
Hello everyone, On the command line, when I run the following commands:
Everything works fine. However, when using the REST API and doing:
I get the error:
Looking at the "If a volume source is specified, it must be a path on the host or the name of a named volume. [...] Any source that does not begin with a . or / is treated as the name of a named volume." So, my question is, does the Libpod API support folders on host as volumes? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
you need to use For example
The cli and API do not match one to one especially not around mounting. |
Beta Was this translation helpful? Give feedback.
you need to use
mounts
,volume
is onlt for actual real named volumes in the API.For example
The cli and API do not match one to one especially not around mounting.