Docker on MacOS is slow and how to fix it
paolomainardi.com
Docker on MacOS is slow and how to fix it
1–10 of 211 posts
Re: Docker on MacOS is slow and how to fix it
#2Re: Docker on MacOS is slow and how to fix it
#3My preferred fix: don't develop in Docker.
Re: Docker on MacOS is slow and how to fix it
#4Re: Docker on MacOS is slow and how to fix it
#5Re: Docker on MacOS is slow and how to fix it
#6My preferred fix: don't develop in Docker.
Have fun managing osx and Linux dependencies then when you could just maintain one.
Re: Docker on MacOS is slow and how to fix it
#7I also develop frontends using vue, managed by npm. In my experience this doesnt need to be dockerized since npm installs everything in a subdirectory per project. Is there a benefit to running this as a dockerized app?
Re: Docker on MacOS is slow and how to fix it
#8Earlier quoted context omitted.
Have fun managing osx and Linux dependencies then when you could just maintain one.
When I used to use a mac I just put all my "Linux" (GNU really) dependencies in a prefix and that worked pretty well. Docker is kind of overkill for what people use it for IMO.
Re: Docker on MacOS is slow and how to fix it
#9I finally gave up the effects of Docker on performance and battery life and switched to Windows. I still don't have a long lasting battery, but at least performance is better.
Re: Docker on MacOS is slow and how to fix it
#10What sort of workloads are people doing where the filesystem access is limiting them? I develop python web apps on a mac and use dockerized postgres and a dockerized flask app. I don't seem to experience any noticeable issues. When I am developing I mount the source code directory as a volume so code edits are synced live into the running docker container. I also develop frontends using vue, managed by npm. In my exp…