Skip to content

Commit

Permalink
enable stding and terminal for podman to align it with docker runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Aug 22, 2023
1 parent cef9d9a commit c65e0a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/podman/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ func (r *PodmanRuntime) createContainerSpec(ctx context.Context, cfg *types.Node
EnvHost: false,
HTTPProxy: false,
Env: cfg.Env,
Terminal: false,
Stdin: false,
Terminal: true,
Stdin: true,
Labels: cfg.Labels,
Hostname: cfg.ShortName,
Sysctl: cfg.Sysctls,
Expand Down

0 comments on commit c65e0a6

Please sign in to comment.