mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
da92dad59f
This change enables the workflow of finishing installing Windows OS updates in the container after it has completed running, via a special servicing container. Signed-off-by: Stefan J. Wernli <swernli@microsoft.com>
36 lines
1.1 KiB
Go
36 lines
1.1 KiB
Go
package daemon
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/container"
|
|
"github.com/docker/docker/libcontainerd"
|
|
)
|
|
|
|
// platformConstructExitStatus returns a platform specific exit status structure
|
|
func platformConstructExitStatus(e libcontainerd.StateInfo) *container.ExitStatus {
|
|
return &container.ExitStatus{
|
|
ExitCode: int(e.ExitCode),
|
|
}
|
|
}
|
|
|
|
// postRunProcessing perfoms any processing needed on the container after it has stopped.
|
|
func (daemon *Daemon) postRunProcessing(container *container.Container, e libcontainerd.StateInfo) error {
|
|
if e.UpdatePending {
|
|
spec, err := daemon.createSpec(container)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
servicingOption := &libcontainerd.ServicingOption{
|
|
IsServicing: true,
|
|
}
|
|
|
|
// Create a new servicing container, which will start, complete the update, and merge back the
|
|
// results if it succeeded, all as part of the below function call.
|
|
if err := daemon.containerd.Create((container.ID + "_servicing"), *spec, servicingOption); err != nil {
|
|
return fmt.Errorf("Post-run update servicing failed: %s", err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|