-
-
Save projectoperations/43d20fd2ce18d65d2982577f93c98db4 to your computer and use it in GitHub Desktop.
Sample Docker daemon.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "data-root": "/mnt/disk1/docker", | |
| "storage-driver": "overlay2", | |
| "insecure-registries" : [ | |
| "192.168.1.200:5000" | |
| ], | |
| "dns": [ | |
| "192.168.1.1" | |
| ], | |
| "registry-mirrors" : [ | |
| "http://192.168.1.200:5000" | |
| ], | |
| "log-driver": "json-file", | |
| "log-opts": { | |
| "max-size": "25m", | |
| "max-file": "5", | |
| "compress": "true" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment