This may be used for the .dockerinit case if the main binary is not statically linked. Upstream-commit: b8dc7b5f1a8111275e2b869dfb67a8689cecf9b9 Component: engine
17 lines
168 B
Go
17 lines
168 B
Go
package main
|
|
|
|
import (
|
|
"github.com/dotcloud/docker"
|
|
)
|
|
|
|
var (
|
|
GITCOMMIT string
|
|
VERSION string
|
|
)
|
|
|
|
func main() {
|
|
// Running in init mode
|
|
docker.SysInit()
|
|
return
|
|
}
|