mirror of
https://github.com/docker/docs.git
synced 2026-03-28 06:49:00 +07:00
Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack)
13 lines
228 B
Go
13 lines
228 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/docker/docker/daemon/execdriver/lxc"
|
|
_ "github.com/docker/docker/daemon/execdriver/native"
|
|
"github.com/docker/docker/pkg/reexec"
|
|
)
|
|
|
|
func main() {
|
|
// Running in init mode
|
|
reexec.Init()
|
|
}
|