Created
December 1, 2016 01:30
-
-
Save kortina/67ad6e40e40d5199c3507cdad0c9a12c to your computer and use it in GitHub Desktop.
Docker for Mac fsync Perf Patch
This file contains 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
#!/bin/bash | |
# Tune fsync perf for docker mac per | |
# https://github.com/docker/for-mac/issues/668 | |
# NB: You must be on Docker 1.12.2-rc1-beta27 or greater | |
cd ~/Library/Containers/com.docker.docker/Data/database/ | |
f="com.docker.driver.amd64-linux/disk/full-sync-on-flush" | |
git reset --hard | |
cat $f | |
echo "false" > $f | |
git add $f && git commit -s -m "Disable flushing" | |
echo "You should now restart Docker for Mac." |
cd: no such file or directory: /Users/pilat/Library/Containers/com.docker.docker/Data/database/
I'm here also trying to make my docker faster on Mac. The directory in my case was vms and not database but that only solves the amount of disk space and there is no git associated.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this hack does not work on Docker version 18.06.0-ce, build 0ffa825 for mac anymore. Have you heard of a new method?
thx in advance