-
I set my
I believe that the This feature is documented. I found the code is here // EngineConfig contains configuration options used to set up a engine runtime
type EngineConfig struct {
// Indicates whether the application should be running in Remote mode
Remote bool `toml:"remote,omitempty"`
} I saw there is another struct (that looked critical) contains a // PodmanConfig combines the defaults and settings from the file system with the
// flags given in os.Args. Some runtime state is also stored here.
type PodmanConfig struct {
*config.Config
Remote bool // Connection to Podman API Service will use RESTful API
} I found the working function in code is This feature, read remote flag from config file, does it not work by design, or it's just under development so I maybe could try to fix it ? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
rhatdan
Jan 14, 2022
Replies: 1 comment 2 replies
-
It is supposed to work. Looks like a bug. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
hsupu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It is supposed to work. Looks like a bug.