0

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?

Techradar
  • 3,506
  • 3
  • 18
  • 28

1 Answers1

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