mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
17 lines
410 B
Go
17 lines
410 B
Go
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
|
|
}
|