Docker-DCO-1.1-Signed-off-by: Victor Vieux <vieux@docker.com> (github: vieux) Upstream-commit: b3ee9ac74e171e00f14027e39278013629e681b8 Component: engine
12 lines
130 B
Go
12 lines
130 B
Go
package main
|
|
|
|
import (
|
|
"github.com/docker/docker/sysinit"
|
|
)
|
|
|
|
func main() {
|
|
// Running in init mode
|
|
sysinit.SysInit()
|
|
return
|
|
}
|