Docker daemon flags ignorado

Ambiente:OS: debian 8.0.0-amd64, ubuntu-15.04, 16.04Estibador: 1.x.xProcedimiento:

Cambié/etc/default/docker para agregar un registro de acoplador privado, luego reinicié el servicio de acoplador y finalmente intenté extraer alguna imagen.

$ cat /etc/default/docker
DOCKER_OPTS="--insecure-registry mydocker-registry.net:5000"

$ service docker restart

$ docker pull mydocker-registry.net:5000/testdb
FATA[0000] Error: v1 ping attempt failed with error: Get https://mydocker-
registry.net:5000/v1/_ping: dial tcp: lookup mydocker-registry.net: no 
such host. If this private registry supports only HTTP or HTTPS with an 
unknown CA certificate, please add `--insecure-registry mydocker-
registry.net:5000` to the daemon's arguments. In the case of HTTPS, if 
you have access to the registry's CA certificate, no need for the flag; 
simply place the CA certificate at /etc/docker/certs.d/mydocker-
registry.net:5000/ca.crt

A ps la salida no muestra nada sobre el entorno DOCKER_OPTS var.

$ ps auxwww|grep docker
root  6919   0.0   0.1   331076   19984 ? Ssl 10:14   0:00 /usr/bin/docker -d -H fd://
Pregunta:

Según la documentación de Docker, la forma de utilizar un registro privado es a través de DOCKER_OPTS en/etc/default/docker. ¿Por qué, después de hacer eso, no tiene efecto en este entorno?

Notas:El DNS del nombre de host del registro privado se resuelve correctamente.

Respuestas a la pregunta(6)

Su respuesta a la pregunta