mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
250bc3f615
This may be used for the .dockerinit case if the main binary is not statically linked.
16 lines
168 B
Go
16 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
|
|
}
|