
Currently DOCKER_OPTS incorrectly changed with insecure-registry and registry-mirror opts (setupDockerRegistry and setupDockerMirror scripts): opts aren't wrapped with quotes after changing. Change-Id: I3265953cc6e6d9de75fa4ba185059cd75c06181c Closes-bug: #1628405
6 lines
139 B
Bash
6 lines
139 B
Bash
#!/bin/bash
|
|
|
|
source /etc/default/docker
|
|
DOCKER_OPTS+=" --insecure-registry $1"
|
|
echo "DOCKER_OPTS=\"${DOCKER_OPTS}\"" > /etc/default/docker
|