Version 2
{
"version": 2,
// Remote DNS servers to be asked when can not solve from docker or local storage
// If no one server was specified then the 8.8.8.8 will be used
"remoteDnsServers": [ "8.8.8.8", "4.4.4.4:54" ],
// all existent environments
"envs": [
{
"name": "", // empty string is the default enviroment
"hostnames": [ // all local hostnames entries
{
// (optional) used to control it will be automatically generated if not passed
"id": 1,
"hostname": "github.com",
"ip": "192.168.0.1",
"ttl": 255 // how many seconds cache this entry
}
]
}
],
"activeEnv": "", // the current environment keyname
"webServerPort": 0, // web admin port, when 0 the default value is used, see --help option
"dnsServerPort": 8980, // dns server port, when 0 the default value is used
"logLevel": "DEBUG",
"logFile": "console" // where the log will be written,
"registerContainerNames": false, // if should register container name / service name as a hostname
"domain": "" // The container names domain
}
Version 1
{
"remoteDnsServers": [ [8,8,8,8], [4,4,4,4] ], // Remote DNS servers to be asked when can not solve from docker or local storage
// If no one server was specified then the 8.8.8.8 will be used
"envs": [ // all existent environments
{
"name": "", // empty string is the default
"hostnames": [ // all local hostnames entries
{
"id": 1,
"hostname": "github.com",
"ip": [192, 168, 0, 1],
"ttl": 255
}
]
}
],
"activeEnv": "", // the default env keyname
"lastId": 1, // hostnames sequence, don't touch here
"webServerPort": 0, // web admin port, when 0 the default value is used, see --help option
"dnsServerPort": 8980, // dns server port, when 0 the default value is used
"logLevel": "DEBUG",
"logFile": "console" // where the log will be written,
"registerContainerNames": false // if should register container name / service name as a hostname
}
VARIBLE | DESCRIPTION | DEFAULT VALUE |
---|---|---|
MG_RESOLVCONF | Linux resolvconf path to set DPS as default DNS | /etc/resolv.conf |
MG_LOG_LEVEL | INFO | |
MG_LOG_FILE | Path where to logs will be stored | console |
MG_REGISTER_CONTAINER_NAMES | if should register container name / service name as a hostname | false |
MG_HOST_MACHINE_HOSTNAME | hostname to solve host machine IP | host.docker |
MG_DOMAIN | The container names domain (requires MG_REGISTER_CONTINER_NAMES=TRUE) | .docker |
-compress
compress replies
-conf-path string
The config file path (default "conf/config.json")
-cpuprofile string
write cpu profile to file
-default-dns
This DNS server will be the default server for this machine (default true)
-domain string
Domain utilized to solver containers and services hostnames (default "docker")
-help
This message
-host-machine-hostname string
The hostname to get host machine IP (default "host.docker")
-log-file string
Log to file instead of console, (true=log to default log file, /tmp/log.log=log to custom log location) (default "console")
-log-level string
Log Level ERROR, WARNING, INFO, DEBUG (default "INFO")
-register-container-names
If must register container name / service name as host in DNS server
-server-port int
The DNS server to start into (default 53)
-service string
Setup as service, starting with machine at boot
docker = start as docker service,
normal = start as normal service,
uninstall = uninstall the service from machine
-service-publish-web-port
Publish web port when running as service in docker mode (default true)
-tsig string
use MD5 hmac tsig: keyname:base64
-version
Current version
-web-server-port int
The web server port (default 5380)