2015-07-29 06:52:15 +00:00
|
|
|
rancher:
|
2016-06-30 01:39:12 +00:00
|
|
|
environment:
|
|
|
|
VERSION: {{.VERSION}}
|
|
|
|
SUFFIX: {{.SUFFIX}}
|
2016-05-03 15:55:15 +00:00
|
|
|
defaults:
|
|
|
|
hostname: {{.HOSTNAME_DEFAULT}}
|
2017-01-18 12:09:46 +00:00
|
|
|
{{if eq "amd64" .ARCH -}}
|
2016-08-26 18:23:34 +00:00
|
|
|
docker:
|
2017-04-12 03:08:34 +00:00
|
|
|
engine: docker-17.03.1-ce
|
2017-01-18 12:09:46 +00:00
|
|
|
{{else -}}
|
|
|
|
docker:
|
|
|
|
engine: docker-1.11.2
|
|
|
|
{{end -}}
|
2016-05-03 15:55:15 +00:00
|
|
|
network:
|
|
|
|
dns:
|
|
|
|
nameservers: [8.8.8.8, 8.8.4.4]
|
2015-07-29 06:52:15 +00:00
|
|
|
bootstrap:
|
2016-10-17 21:47:44 +00:00
|
|
|
bootstrap:
|
|
|
|
image: {{.OS_REPO}}/os-bootstrap:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: ros bootstrap
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
2015-11-26 12:41:42 +00:00
|
|
|
io.rancher.os.detach: "false"
|
2015-07-29 06:52:15 +00:00
|
|
|
io.rancher.os.scope: system
|
|
|
|
log_driver: json-file
|
|
|
|
net: none
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- /dev:/host/dev
|
|
|
|
- /lib/modules:/lib/modules
|
|
|
|
- /lib/firmware:/lib/firmware
|
2016-08-01 02:48:10 +00:00
|
|
|
- /usr/bin/ros:/usr/bin/ros:ro
|
2016-10-17 21:47:44 +00:00
|
|
|
- /usr/share/ros:/usr/share/ros:ro
|
2017-01-20 07:02:48 +00:00
|
|
|
- /var/lib/rancher:/var/lib/rancher:ro
|
2016-11-09 19:08:30 +00:00
|
|
|
cloud_init_services:
|
|
|
|
cloud-init:
|
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: cloud-init-save
|
|
|
|
labels:
|
|
|
|
io.rancher.os.detach: "false"
|
|
|
|
io.rancher.os.scope: system
|
|
|
|
log_driver: json-file
|
|
|
|
net: host
|
|
|
|
uts: host
|
|
|
|
pid: host
|
|
|
|
ipc: host
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- /dev:/host/dev
|
|
|
|
- /etc/ssl/certs/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt.rancher
|
|
|
|
- /lib/modules:/lib/modules
|
|
|
|
- /lib/firmware:/lib/firmware
|
|
|
|
- /usr/bin/ros:/usr/bin/ros:ro
|
|
|
|
- /usr/bin/ros:/usr/bin/cloud-init-save
|
|
|
|
- /usr/share/ros:/usr/share/ros:ro
|
|
|
|
- /var/lib/rancher:/var/lib/rancher
|
|
|
|
- /var/lib/rancher/conf:/var/lib/rancher/conf
|
2015-07-29 06:52:15 +00:00
|
|
|
bootstrap_docker:
|
2016-09-26 00:55:19 +00:00
|
|
|
bridge: none
|
|
|
|
storage_driver: overlay
|
|
|
|
restart: false
|
|
|
|
graph: /var/lib/system-docker
|
|
|
|
group: root
|
2016-10-30 19:07:55 +00:00
|
|
|
host: ["unix:///var/run/system-docker.sock"]
|
2016-09-26 00:55:19 +00:00
|
|
|
userland_proxy: false
|
2016-06-12 19:02:07 +00:00
|
|
|
console: default
|
2015-07-29 06:52:15 +00:00
|
|
|
cloud_init:
|
|
|
|
datasources:
|
|
|
|
- configdrive:/media/config-2
|
|
|
|
repositories:
|
|
|
|
core:
|
2016-07-01 17:13:52 +00:00
|
|
|
url: {{.OS_SERVICES_REPO}}/{{.REPO_VERSION}}
|
2015-07-29 06:52:15 +00:00
|
|
|
state:
|
|
|
|
fstype: auto
|
2015-12-20 05:26:09 +00:00
|
|
|
oem_fstype: auto
|
|
|
|
oem_dev: LABEL=RANCHER_OEM
|
2016-08-12 18:05:16 +00:00
|
|
|
sysctl:
|
|
|
|
fs.file-max: 1000000000
|
2015-07-29 06:52:15 +00:00
|
|
|
services:
|
2016-02-24 03:06:14 +00:00
|
|
|
{{if eq "amd64" .ARCH -}}
|
2015-07-29 06:52:15 +00:00
|
|
|
acpid:
|
2016-07-22 06:08:14 +00:00
|
|
|
image: {{.OS_REPO}}/os-acpid:{{.VERSION}}{{.SUFFIX}}
|
2016-06-16 21:26:06 +00:00
|
|
|
command: /usr/sbin/acpid -f
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
|
|
|
io.rancher.os.scope: system
|
|
|
|
net: host
|
|
|
|
uts: host
|
|
|
|
privileged: true
|
|
|
|
volumes_from:
|
|
|
|
- command-volumes
|
|
|
|
- system-volumes
|
2016-02-24 03:06:14 +00:00
|
|
|
{{end -}}
|
2015-07-29 06:52:15 +00:00
|
|
|
all-volumes:
|
2016-06-16 21:26:06 +00:00
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: echo
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
2015-11-26 12:41:42 +00:00
|
|
|
io.rancher.os.createonly: "true"
|
2015-07-29 06:52:15 +00:00
|
|
|
io.rancher.os.scope: system
|
|
|
|
log_driver: json-file
|
|
|
|
net: none
|
|
|
|
privileged: true
|
|
|
|
read_only: true
|
|
|
|
volumes_from:
|
2015-10-04 06:07:56 +00:00
|
|
|
- container-data-volumes
|
2015-07-29 06:52:15 +00:00
|
|
|
- command-volumes
|
2017-02-17 12:18:08 +00:00
|
|
|
- media-volumes
|
2015-07-29 06:52:15 +00:00
|
|
|
- user-volumes
|
|
|
|
- system-volumes
|
2016-08-04 22:47:12 +00:00
|
|
|
cloud-init-execute:
|
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: cloud-init-execute -pre-console
|
|
|
|
labels:
|
|
|
|
io.rancher.os.detach: "false"
|
|
|
|
io.rancher.os.scope: system
|
2016-11-09 19:08:30 +00:00
|
|
|
io.rancher.os.after: ntp
|
2015-07-29 06:52:15 +00:00
|
|
|
net: host
|
|
|
|
uts: host
|
|
|
|
privileged: true
|
|
|
|
volumes_from:
|
|
|
|
- system-volumes
|
2016-11-21 19:52:21 +00:00
|
|
|
volumes:
|
|
|
|
- /usr/bin/ros:/usr/bin/ros
|
2015-07-29 06:52:15 +00:00
|
|
|
command-volumes:
|
2016-06-16 21:26:06 +00:00
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: echo
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
2015-11-26 12:41:42 +00:00
|
|
|
io.rancher.os.createonly: "true"
|
2015-07-29 06:52:15 +00:00
|
|
|
io.rancher.os.scope: system
|
|
|
|
log_driver: json-file
|
|
|
|
net: none
|
|
|
|
privileged: true
|
|
|
|
read_only: true
|
|
|
|
volumes:
|
2015-11-18 09:04:46 +00:00
|
|
|
- /usr/bin/ros:/usr/bin/ros:ro
|
2015-07-29 06:52:15 +00:00
|
|
|
console:
|
2016-05-06 17:12:09 +00:00
|
|
|
image: {{.OS_REPO}}/os-console:{{.VERSION}}{{.SUFFIX}}
|
2016-10-20 18:58:34 +00:00
|
|
|
command: ros console-init
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
|
|
|
io.rancher.os.scope: system
|
2016-11-09 19:08:30 +00:00
|
|
|
io.rancher.os.after: cloud-init-execute
|
2015-08-26 15:05:44 +00:00
|
|
|
io.docker.compose.rebuild: always
|
2016-06-10 04:31:07 +00:00
|
|
|
io.rancher.os.console: default
|
2015-07-29 06:52:15 +00:00
|
|
|
net: host
|
|
|
|
uts: host
|
|
|
|
pid: host
|
|
|
|
ipc: host
|
|
|
|
privileged: true
|
|
|
|
restart: always
|
|
|
|
volumes_from:
|
|
|
|
- all-volumes
|
2015-08-31 07:53:45 +00:00
|
|
|
volumes:
|
|
|
|
- /usr/bin/iptables:/sbin/iptables:ro
|
2015-10-04 06:07:56 +00:00
|
|
|
container-data-volumes:
|
2016-06-16 21:26:06 +00:00
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: echo
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
2015-11-26 12:41:42 +00:00
|
|
|
io.rancher.os.createonly: "true"
|
2015-07-29 06:52:15 +00:00
|
|
|
io.rancher.os.scope: system
|
|
|
|
log_driver: json-file
|
|
|
|
net: none
|
|
|
|
privileged: true
|
|
|
|
read_only: true
|
|
|
|
volumes:
|
|
|
|
- /var/lib/docker:/var/lib/docker
|
2017-07-05 10:01:17 +00:00
|
|
|
logrotate:
|
|
|
|
image: {{.OS_REPO}}/os-logrotate:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: /usr/sbin/logrotate -v /etc/logrotate.conf
|
|
|
|
labels:
|
|
|
|
io.rancher.os.createonly: "true"
|
|
|
|
io.rancher.os.scope: system
|
|
|
|
io.rancher.os.before: system-cron
|
|
|
|
cron.schedule: "@hourly"
|
|
|
|
uts: host
|
2017-07-12 22:57:03 +00:00
|
|
|
net: none
|
2017-07-05 10:01:17 +00:00
|
|
|
privileged: true
|
|
|
|
volumes_from:
|
|
|
|
- command-volumes
|
|
|
|
- system-volumes
|
2017-02-17 12:18:08 +00:00
|
|
|
media-volumes:
|
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: echo
|
|
|
|
labels:
|
|
|
|
io.rancher.os.createonly: "true"
|
|
|
|
io.rancher.os.scope: system
|
|
|
|
log_driver: json-file
|
|
|
|
net: none
|
|
|
|
privileged: true
|
|
|
|
read_only: true
|
|
|
|
volumes:
|
|
|
|
- /media:/media:shared
|
|
|
|
- /mnt:/mnt:shared
|
2016-04-08 20:04:35 +00:00
|
|
|
network:
|
2016-05-27 01:54:42 +00:00
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
2016-11-09 19:08:30 +00:00
|
|
|
command: netconf
|
2016-04-08 20:04:35 +00:00
|
|
|
labels:
|
|
|
|
io.rancher.os.scope: system
|
2016-11-09 19:08:30 +00:00
|
|
|
io.rancher.os.after: udev
|
|
|
|
io.rancher.os.reloadconfig: "true"
|
2016-04-08 20:04:35 +00:00
|
|
|
net: host
|
|
|
|
uts: host
|
|
|
|
pid: host
|
|
|
|
privileged: true
|
|
|
|
volumes_from:
|
|
|
|
- command-volumes
|
|
|
|
- system-volumes
|
2017-03-08 06:02:44 +00:00
|
|
|
volumes:
|
|
|
|
- /usr/bin/iptables:/sbin/iptables:ro
|
2015-07-29 06:52:15 +00:00
|
|
|
ntp:
|
2016-06-16 21:26:06 +00:00
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: ntpd --nofork -g
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
|
|
|
io.rancher.os.scope: system
|
2016-11-09 19:08:30 +00:00
|
|
|
io.rancher.os.after: network
|
2015-07-29 06:52:15 +00:00
|
|
|
net: host
|
|
|
|
uts: host
|
|
|
|
privileged: true
|
|
|
|
restart: always
|
2016-08-15 02:17:24 +00:00
|
|
|
volumes_from:
|
|
|
|
- command-volumes
|
|
|
|
- system-volumes
|
2015-07-29 06:52:15 +00:00
|
|
|
preload-user-images:
|
2016-10-17 21:47:44 +00:00
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: ros preload-images
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
2015-11-26 12:41:42 +00:00
|
|
|
io.rancher.os.detach: "false"
|
2015-08-06 19:01:57 +00:00
|
|
|
io.rancher.os.scope: system
|
|
|
|
io.rancher.os.after: console
|
2015-07-29 06:52:15 +00:00
|
|
|
privileged: true
|
|
|
|
volumes_from:
|
|
|
|
- command-volumes
|
|
|
|
- system-volumes
|
|
|
|
syslog:
|
2017-07-05 10:01:17 +00:00
|
|
|
image: {{.OS_REPO}}/os-syslog:{{.VERSION}}{{.SUFFIX}}
|
2016-11-03 23:43:41 +00:00
|
|
|
command: rsyslogd -n
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
|
|
|
io.rancher.os.scope: system
|
|
|
|
log_driver: json-file
|
|
|
|
net: host
|
|
|
|
uts: host
|
|
|
|
privileged: true
|
|
|
|
restart: always
|
|
|
|
volumes_from:
|
2016-08-15 02:17:24 +00:00
|
|
|
- command-volumes
|
2015-07-29 06:52:15 +00:00
|
|
|
- system-volumes
|
2017-07-05 10:01:17 +00:00
|
|
|
system-cron:
|
|
|
|
image: rancher/container-crontab:v0.1.0
|
|
|
|
labels:
|
|
|
|
io.rancher.os.scope: system
|
|
|
|
uts: host
|
2017-07-12 22:57:03 +00:00
|
|
|
net: none
|
2017-07-05 10:01:17 +00:00
|
|
|
privileged: true
|
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- /var/run/system-docker.sock:/var/run/docker.sock
|
2015-07-29 06:52:15 +00:00
|
|
|
system-volumes:
|
2016-06-16 21:26:06 +00:00
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: echo
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
2015-11-26 12:41:42 +00:00
|
|
|
io.rancher.os.createonly: "true"
|
2015-07-29 06:52:15 +00:00
|
|
|
io.rancher.os.scope: system
|
|
|
|
log_driver: json-file
|
|
|
|
net: none
|
|
|
|
privileged: true
|
|
|
|
read_only: true
|
|
|
|
volumes:
|
|
|
|
- /dev:/host/dev
|
2015-08-27 19:24:26 +00:00
|
|
|
- /etc/docker:/etc/docker
|
2015-12-10 15:56:15 +00:00
|
|
|
- /etc/hosts:/etc/hosts
|
2017-07-05 10:01:17 +00:00
|
|
|
- /etc/logrotate.d:/etc/logrotate.d
|
2015-11-30 11:06:21 +00:00
|
|
|
- /etc/resolv.conf:/etc/resolv.conf
|
2015-07-29 06:52:15 +00:00
|
|
|
- /etc/ssl/certs/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt.rancher
|
2016-02-20 00:11:32 +00:00
|
|
|
- /etc/selinux:/etc/selinux
|
2015-08-27 13:33:26 +00:00
|
|
|
- /lib/firmware:/lib/firmware
|
2015-08-27 19:24:26 +00:00
|
|
|
- /lib/modules:/lib/modules
|
2015-08-11 05:57:15 +00:00
|
|
|
- /run:/run
|
2015-12-20 05:26:09 +00:00
|
|
|
- /usr/share/ros:/usr/share/ros
|
2016-05-25 16:40:28 +00:00
|
|
|
- /var/lib/rancher/cache:/var/lib/rancher/cache
|
2015-08-27 19:24:26 +00:00
|
|
|
- /var/lib/rancher/conf:/var/lib/rancher/conf
|
|
|
|
- /var/lib/rancher:/var/lib/rancher
|
2015-08-27 13:33:26 +00:00
|
|
|
- /var/log:/var/log
|
2015-08-27 19:24:26 +00:00
|
|
|
- /var/run:/var/run
|
2015-08-11 05:57:15 +00:00
|
|
|
udev-cold:
|
2016-10-17 21:47:44 +00:00
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: ros udev-settle
|
2015-08-11 05:57:15 +00:00
|
|
|
labels:
|
2016-08-28 19:15:32 +00:00
|
|
|
io.rancher.os.detach: "false"
|
2015-08-11 05:57:15 +00:00
|
|
|
io.rancher.os.scope: system
|
|
|
|
net: host
|
|
|
|
uts: host
|
|
|
|
privileged: true
|
|
|
|
volumes_from:
|
2016-08-15 02:17:24 +00:00
|
|
|
- command-volumes
|
2015-08-11 05:57:15 +00:00
|
|
|
- system-volumes
|
2015-07-29 06:52:15 +00:00
|
|
|
udev:
|
2016-10-17 21:47:44 +00:00
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: udevd
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
2015-11-26 12:41:42 +00:00
|
|
|
io.rancher.os.detach: "true"
|
2015-07-29 06:52:15 +00:00
|
|
|
io.rancher.os.scope: system
|
2016-08-28 19:15:32 +00:00
|
|
|
io.rancher.os.after: udev-cold
|
2015-07-29 06:52:15 +00:00
|
|
|
net: host
|
|
|
|
uts: host
|
|
|
|
privileged: true
|
|
|
|
restart: always
|
|
|
|
volumes_from:
|
2016-08-15 02:17:24 +00:00
|
|
|
- command-volumes
|
2015-07-29 06:52:15 +00:00
|
|
|
- system-volumes
|
|
|
|
user-volumes:
|
2016-06-16 21:26:06 +00:00
|
|
|
image: {{.OS_REPO}}/os-base:{{.VERSION}}{{.SUFFIX}}
|
|
|
|
command: echo
|
2015-07-29 06:52:15 +00:00
|
|
|
labels:
|
2015-11-26 12:41:42 +00:00
|
|
|
io.rancher.os.createonly: "true"
|
2015-07-29 06:52:15 +00:00
|
|
|
io.rancher.os.scope: system
|
|
|
|
log_driver: json-file
|
|
|
|
net: none
|
|
|
|
privileged: true
|
|
|
|
read_only: true
|
|
|
|
volumes:
|
|
|
|
- /home:/home
|
|
|
|
- /opt:/opt
|
2015-08-27 19:24:26 +00:00
|
|
|
docker:
|
2017-01-18 12:09:46 +00:00
|
|
|
{{if eq "amd64" .ARCH -}}
|
2017-04-12 03:08:34 +00:00
|
|
|
image: {{.OS_REPO}}/os-docker:17.03.1{{.SUFFIX}}
|
2017-01-18 12:09:46 +00:00
|
|
|
{{else -}}
|
|
|
|
image: {{.OS_REPO}}/os-docker:1.11.2{{.SUFFIX}}
|
|
|
|
{{end -}}
|
2016-10-20 18:58:34 +00:00
|
|
|
command: ros user-docker
|
2016-05-06 23:25:07 +00:00
|
|
|
environment:
|
|
|
|
- HTTP_PROXY
|
|
|
|
- HTTPS_PROXY
|
|
|
|
- NO_PROXY
|
2015-08-27 19:24:26 +00:00
|
|
|
labels:
|
|
|
|
io.rancher.os.scope: system
|
2015-08-27 20:02:42 +00:00
|
|
|
io.rancher.os.after: console
|
2015-08-27 19:24:26 +00:00
|
|
|
net: host
|
|
|
|
pid: host
|
|
|
|
ipc: host
|
|
|
|
uts: host
|
|
|
|
privileged: true
|
|
|
|
restart: always
|
|
|
|
volumes_from:
|
|
|
|
- all-volumes
|
2016-09-09 16:06:23 +00:00
|
|
|
volumes:
|
|
|
|
- /sys:/host/sys
|
|
|
|
- /var/lib/system-docker:/var/lib/system-docker:shared
|
2015-07-29 06:52:15 +00:00
|
|
|
system_docker:
|
2016-06-01 04:38:10 +00:00
|
|
|
exec: true
|
2016-09-26 00:55:19 +00:00
|
|
|
storage_driver: overlay
|
|
|
|
restart: false
|
|
|
|
graph: /var/lib/system-docker
|
|
|
|
group: root
|
2016-10-30 19:07:55 +00:00
|
|
|
host: ["unix:///var/run/system-docker.sock"]
|
2016-09-26 00:55:19 +00:00
|
|
|
pid_file: /var/run/system-docker.pid
|
|
|
|
exec_root: /var/run/system-docker
|
|
|
|
config_file: /etc/docker/system-docker.json
|
|
|
|
userland_proxy: false
|
|
|
|
log_opts:
|
|
|
|
max-size: 25m
|
|
|
|
max-file: 2
|
2015-07-29 06:52:15 +00:00
|
|
|
upgrade:
|
2016-06-27 12:47:28 +00:00
|
|
|
url: {{.OS_RELEASES_YML}}/releases{{.SUFFIX}}.yml
|
2016-05-06 17:12:09 +00:00
|
|
|
image: {{.OS_REPO}}/os
|
2015-09-11 09:10:50 +00:00
|
|
|
docker:
|
2017-01-18 12:09:46 +00:00
|
|
|
{{if eq "amd64" .ARCH -}}
|
2017-04-12 03:08:34 +00:00
|
|
|
engine: docker-17.03.1-ce
|
2017-01-18 12:09:46 +00:00
|
|
|
{{else -}}
|
|
|
|
engine: docker-1.11.2
|
|
|
|
{{end -}}
|
2016-09-26 00:55:19 +00:00
|
|
|
storage_driver: overlay
|
|
|
|
group: docker
|
2016-10-30 19:07:55 +00:00
|
|
|
host: ["unix:///var/run/docker.sock"]
|
2016-09-26 00:55:19 +00:00
|
|
|
log_opts:
|
|
|
|
max-size: 25m
|
|
|
|
max-file: 2
|
2015-12-10 06:36:37 +00:00
|
|
|
tls_args: [--tlsverify, --tlscacert=/etc/docker/tls/ca.pem, --tlscert=/etc/docker/tls/server-cert.pem, --tlskey=/etc/docker/tls/server-key.pem,
|
2015-07-29 06:52:15 +00:00
|
|
|
'-H=0.0.0.0:2376']
|