Created
August 13, 2018 16:08
-
-
Save keepitsimple/27e80ea52729050f7b0536247c5c8414 to your computer and use it in GitHub Desktop.
docker config file optimal configuration for Linux 4.x
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
| # from here: https://sandro-keil.de/blog/2017/01/23/docker-daemon-tuning-and-json-file-configuration/ | |
| { | |
| "storage-driver": "overlay2", | |
| "graph": "/var/lib/docker", | |
| "log-driver": "json-file", | |
| "log-opts": { | |
| "max-size": "10m", | |
| "max-file": "2" | |
| }, | |
| "debug": false, | |
| "userns-remap": "1000:1000" | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Important link how to map user namespace for docker