Daemon.json: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 5: | Line 5: | ||
=Overview= | =Overview= | ||
/etc/docker/daemon.json contains server configuration and it is an alternative to configuration specified as command line parameters when the server is started. Initially, daemon.json is empty or missing altogether. | |||
On Mac installations, the file can be accessed following the procure specified here: | On Mac installations, the file can be accessed following the procure specified here: |
Revision as of 06:46, 22 April 2018
Internal
Overview
/etc/docker/daemon.json contains server configuration and it is an alternative to configuration specified as command line parameters when the server is started. Initially, daemon.json is empty or missing altogether.
On Mac installations, the file can be accessed following the procure specified here:
Configuration
insecure-registries
{
"insecure-registries" : ["192.168.1.10:5000"]
}
The same behavior can be specified by setting command-line startup parameter --insecure-registry.