mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
This may be used for the .dockerinit case if the main binary is not statically linked. Upstream-commit: 250bc3f61547c6bcdc17ffe41e8a9a0307099cc3 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
|
|
}
|