You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a way to pass arguments to the command that is run in the container, however, I cannot find a way to pass options to the build command itself. Specifically, I would like to pass --env-file to podman-create.
The text was updated successfully, but these errors were encountered:
In general it's rather difficult to pass arbitrary option strings into the endpoint. It either needs changes in the underlying library podman-api rs libary (options builder would need some kind of hash map with string keys and probably json values) or in Pods I'd have to split the option string and let every part go through an if else with well known options and set the correct option on the builder.
So, for now I suggest we'd just add those options in the UI.
There is a way to pass arguments to the command that is run in the container, however, I cannot find a way to pass options to the build command itself. Specifically, I would like to pass
--env-file
topodman-create
.The text was updated successfully, but these errors were encountered: