2013-01-19 16:07:19 -08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2013-03-13 00:29:40 -07:00
|
|
|
"flag"
|
2013-04-10 12:24:15 +02:00
|
|
|
"fmt"
|
2013-03-13 00:29:40 -07:00
|
|
|
"github.com/dotcloud/docker"
|
2013-11-07 12:19:24 -08:00
|
|
|
"github.com/dotcloud/docker/engine"
|
2013-10-10 10:53:38 +02:00
|
|
|
"github.com/dotcloud/docker/sysinit"
|
2013-05-14 22:37:35 +00:00
|
|
|
"github.com/dotcloud/docker/utils"
|
2013-01-19 16:07:19 -08:00
|
|
|
"log"
|
|
|
|
"os"
|
2013-05-23 16:09:28 +00:00
|
|
|
"strings"
|
2013-01-23 23:14:46 -08:00
|
|
|
)
|
|
|
|
|
2013-04-11 12:58:23 -07:00
|
|
|
var (
|
2013-06-04 18:00:22 +00:00
|
|
|
GITCOMMIT string
|
2013-08-26 17:45:52 +02:00
|
|
|
VERSION string
|
2013-04-11 12:58:23 -07:00
|
|
|
)
|
2013-04-01 13:12:56 -05:00
|
|
|
|
2013-01-19 16:07:19 -08:00
|
|
|
func main() {
|
2013-06-14 16:56:08 -07:00
|
|
|
if selfPath := utils.SelfPath(); selfPath == "/sbin/init" || selfPath == "/.dockerinit" {
|
2013-03-13 00:29:40 -07:00
|
|
|
// Running in init mode
|
2013-10-10 10:53:38 +02:00
|
|
|
sysinit.SysInit()
|
2013-03-13 00:29:40 -07:00
|
|
|
return
|
2013-01-25 11:26:18 -08:00
|
|
|
}
|
2013-03-22 11:44:12 -07:00
|
|
|
// FIXME: Switch d and D ? (to be more sshd like)
|
2013-08-06 20:51:12 -07:00
|
|
|
flVersion := flag.Bool("v", false, "Print version information and quit")
|
2013-03-28 20:12:23 -04:00
|
|
|
flDaemon := flag.Bool("d", false, "Daemon mode")
|
|
|
|
flDebug := flag.Bool("D", false, "Debug mode")
|
2013-09-09 16:59:20 +00:00
|
|
|
flAutoRestart := flag.Bool("r", true, "Restart previously running containers")
|
2013-07-21 18:01:52 -07:00
|
|
|
bridgeName := flag.String("b", "", "Attach containers to a pre-existing network bridge. Use 'none' to disable container networking")
|
2013-04-10 12:24:15 +02:00
|
|
|
pidfile := flag.String("p", "/var/run/docker.pid", "File containing process PID")
|
2013-10-23 08:09:16 +00:00
|
|
|
flRoot := flag.String("g", "/var/lib/docker", "Path to use as the root of the docker runtime.")
|
2013-06-03 21:39:00 -04:00
|
|
|
flEnableCors := flag.Bool("api-enable-cors", false, "Enable CORS requests in the remote api.")
|
2013-06-06 11:01:29 -07:00
|
|
|
flDns := flag.String("dns", "", "Set custom dns servers")
|
2013-10-10 10:49:18 +02:00
|
|
|
flHosts := utils.ListOpts{fmt.Sprintf("unix://%s", docker.DEFAULTUNIXSOCKET)}
|
2013-06-19 12:31:54 +00:00
|
|
|
flag.Var(&flHosts, "H", "tcp://host:port to bind/connect to or unix://path/to/socket to use")
|
2013-10-04 19:25:15 -07:00
|
|
|
flEnableIptables := flag.Bool("iptables", true, "Disable iptables within docker")
|
|
|
|
flDefaultIp := flag.String("ip", "0.0.0.0", "Default ip address to use when binding a containers ports")
|
2013-10-30 14:39:26 -07:00
|
|
|
flInterContainerComm := flag.Bool("icc", true, "Enable inter-container communication")
|
2013-10-04 19:25:15 -07:00
|
|
|
|
2013-03-13 00:29:40 -07:00
|
|
|
flag.Parse()
|
2013-10-04 19:25:15 -07:00
|
|
|
|
2013-08-06 20:51:12 -07:00
|
|
|
if *flVersion {
|
|
|
|
showVersion()
|
|
|
|
return
|
|
|
|
}
|
2013-06-19 12:31:54 +00:00
|
|
|
if len(flHosts) > 1 {
|
2013-08-12 18:53:06 +01:00
|
|
|
flHosts = flHosts[1:] //trick to display a nice default value in the usage
|
2013-06-19 12:31:54 +00:00
|
|
|
}
|
|
|
|
for i, flHost := range flHosts {
|
2013-10-24 13:23:02 +08:00
|
|
|
host, err := utils.ParseHost(docker.DEFAULTHTTPHOST, docker.DEFAULTHTTPPORT, flHost)
|
|
|
|
if err == nil {
|
|
|
|
flHosts[i] = host
|
|
|
|
} else {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2013-06-19 12:31:54 +00:00
|
|
|
}
|
|
|
|
|
2013-04-02 10:58:16 -07:00
|
|
|
if *flDebug {
|
|
|
|
os.Setenv("DEBUG", "1")
|
|
|
|
}
|
2013-06-04 18:00:22 +00:00
|
|
|
docker.GITCOMMIT = GITCOMMIT
|
2013-08-06 20:49:55 -07:00
|
|
|
docker.VERSION = VERSION
|
2013-03-28 20:12:23 -04:00
|
|
|
if *flDaemon {
|
2013-03-13 00:29:40 -07:00
|
|
|
if flag.NArg() != 0 {
|
|
|
|
flag.Usage()
|
|
|
|
return
|
|
|
|
}
|
2013-10-23 08:09:16 +00:00
|
|
|
eng, err := engine.New(*flRoot)
|
2013-10-21 10:04:42 -06:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
2013-10-04 19:25:15 -07:00
|
|
|
}
|
2013-10-26 17:49:16 -07:00
|
|
|
job := eng.Job("serveapi")
|
2013-10-21 10:04:42 -06:00
|
|
|
job.Setenv("Pidfile", *pidfile)
|
2013-10-23 08:09:16 +00:00
|
|
|
job.Setenv("Root", *flRoot)
|
2013-10-21 10:04:42 -06:00
|
|
|
job.SetenvBool("AutoRestart", *flAutoRestart)
|
|
|
|
job.SetenvBool("EnableCors", *flEnableCors)
|
|
|
|
job.Setenv("Dns", *flDns)
|
|
|
|
job.SetenvBool("EnableIptables", *flEnableIptables)
|
|
|
|
job.Setenv("BridgeIface", *bridgeName)
|
|
|
|
job.SetenvList("ProtoAddresses", flHosts)
|
|
|
|
job.Setenv("DefaultIp", *flDefaultIp)
|
|
|
|
job.SetenvBool("InterContainerCommunication", *flInterContainerComm)
|
2013-10-25 00:30:34 -06:00
|
|
|
if err := job.Run(); err != nil {
|
2013-03-13 00:29:40 -07:00
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
} else {
|
2013-06-19 12:31:54 +00:00
|
|
|
if len(flHosts) > 1 {
|
|
|
|
log.Fatal("Please specify only one -H")
|
|
|
|
}
|
|
|
|
protoAddrParts := strings.SplitN(flHosts[0], "://", 2)
|
2013-06-18 18:59:56 +00:00
|
|
|
if err := docker.ParseCommands(protoAddrParts[0], protoAddrParts[1], flag.Args()...); err != nil {
|
2013-09-09 21:26:35 +00:00
|
|
|
if sterr, ok := err.(*utils.StatusError); ok {
|
|
|
|
os.Exit(sterr.Status)
|
|
|
|
}
|
2013-03-13 00:29:40 -07:00
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-06 20:51:12 -07:00
|
|
|
func showVersion() {
|
|
|
|
fmt.Printf("Docker version %s, build %s\n", VERSION, GITCOMMIT)
|
|
|
|
}
|