blob: 1e3872f0853a956c7ccabe62586409842fa07f83 [file] [log] [blame]
package daemon
import (
"context"
"github.com/moby/moby/v2/daemon/config"
"github.com/moby/moby/v2/daemon/container"
"github.com/opencontainers/runtime-spec/specs-go"
)
func (daemon *Daemon) execSetPlatformOpt(ctx context.Context, daemonCfg *config.Config, ec *container.ExecConfig, p *specs.Process) error {
if ec.Container.ImagePlatform.OS == "windows" {
p.User.Username = ec.User
}
return nil
}