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
Add a new option to CreateContainerConfig to pass environment variables to OCI runtime.
typeCreateContainerConfigstruct {
...// EnvVars are the environment variables passed to the create runtime call,// in the form "key=value"EnvVars []string
}
Should we add the helper function to add env vars?
Alternative encoding: Go prefers to use env vars strings with "key=value", rust uses maps or tuples to represent env vars. What should we use at the protocol level?
Add a new option to
CreateContainerConfig
to pass environment variables to OCI runtime.Nice to have:
The text was updated successfully, but these errors were encountered: