How does one add a daemon.json (docker daemon configuration file) to the drone.io instance, so the image tag on pipeline steps can be configured to be used with private registries and client certificates?
Asked
Active
Viewed 135 times
1 Answers
0
For some of our private network procedures we have a simple Registry running. In your case you need to add the daemon.json
file in both master and worker nodes.
This is the /etc/docker/dameon.json
{
"insecure-registries" : ["internalregistry.example.com"],
}

Sergio Guillen Mantilla
- 1,460
- 1
- 13
- 20