Skip to content

Instantly share code, notes, and snippets.

@dogukancagatay
Last active April 9, 2024 07:08
Show Gist options
  • Save dogukancagatay/0bab7bf7612153d64f57542d19c7929c to your computer and use it in GitHub Desktop.
Save dogukancagatay/0bab7bf7612153d64f57542d19c7929c to your computer and use it in GitHub Desktop.
Sample Docker daemon.json
{
"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