1
0
mirror of https://github.com/rancher/os.git synced 2025-04-28 03:20:50 +00:00

Use none network for power container

This commit is contained in:
niusmallnan 2019-01-08 15:19:08 +08:00
parent 2240ba04fc
commit 41277f7ca5

View File

@ -48,6 +48,7 @@ func runDocker(name string) error {
existing, err := client.ContainerInspect(context.Background(), containerName)
if err == nil && existing.ID != "" {
// remove the old version of reboot
err := client.ContainerRemove(context.Background(), types.ContainerRemoveOptions{
ContainerID: existing.ID,
})
@ -76,7 +77,8 @@ func runDocker(name string) error {
},
},
&container.HostConfig{
PidMode: "host",
PidMode: "host",
NetworkMode: "none",
VolumesFrom: []string{
currentContainer.ID,
},