33## Overview
44
55Docker is useful because it allows you to both package and run
6- software with all its dependencies and configuration in isolation. It
6+ software with all its dependencies and configuration in isolation. It
77also allows you (in theory) to have the same environment in
88development as in CI and production.
99
@@ -18,9 +18,9 @@ brew cask install docker
1818### Configuration of Shared Folders
1919
2020Anecdata suggests that removing some of the default shared folders can
21- decrease CPU usage. Usually you only need to share volumes under your
22- home directory. Open the docker for mac preferences, then select
23- "File Sharing" and then remove ` /Volumes ` and ` /private ` . You may
21+ decrease CPU usage. Usually you only need to share volumes under your
22+ home directory. Open the docker for mac preferences, then select
23+ "File Sharing" and then remove ` /Volumes ` and ` /private ` . You may
2424also find improvements removing ` /Users ` and replacing it with
2525` /Users/YOUR_USERNAME_GOES_HERE ` .
2626
@@ -36,13 +36,13 @@ Storage Driver: overlay2
3636
3737If you don't see overlay2, upgrading to the latest version will add
3838that support, but you would need to recreate all of your docker data
39- to utilize it. The ` Reset ` bomb should do it.
39+ to utilize it. The ` Reset ` bomb should do it.
4040
4141### Configuration of Disk Image
4242
4343If you've been running Docker for Mac for some time, make sure you are
44- using the ` raw ` disk image format and not ` qcow2 ` . Open Docker for
45- Mac preferences and select ` Disk ` . Make sure the image ends with
44+ using the ` raw ` disk image format and not ` qcow2 ` . Open Docker for
45+ Mac preferences and select ` Disk ` . Make sure the image ends with
4646` Docker.raw ` .
4747
4848### Configuration of Resources
@@ -59,7 +59,7 @@ by the docker developers.
5959## Volume Mount Performance
6060
6161Synchronizing the data between the host (your Mac) and the container
62- can be resource intensive and/or slow. Read about the [ performance
62+ can be resource intensive and/or slow. Read about the [ performance
6363tuning options] ( https://docs.docker.com/docker-for-mac/osxfs-caching/ )
6464to see if they might apply to the conditions in your project.
6565
0 commit comments