6 ms·
What is going on with Docker?
by xrobledo84 5y ago
What is going on with Docker?
- headmelted 5y agoJust going to assume this is due to how the hypervisor on macOS won't allow dynamic memory allocation to the runtime. On a Mac, you need to allocate a fixed amount of RAM to Docker, which isn't the case on other platforms where it can dynamically allocate and release as much as your containers demand. It's very painful in workloads that need Docker. Especially on MacBooks where you can't upgrade the RAM to compensate.
- dharmab 5y agoYour assumption is incorrect. This is about Docker Inc starting to charge money for Docker Desktop: https://www.docker.com/blog/updating-product-subscriptions/ https://www.docker.com/blog/updating-product-subscriptions/
- headmelted 5y agoIt certainly was. Yikes.
- codys 5y agohttps://news.ycombinator.com/item?id=28369570 https://news.ycombinator.com/item?id=28369570 (while on linux one can use the docker command line tool without any docker desktop thing, on mac docker desktop wraps together running a linux vm to run the docker daemon & containers inside, making it the most straight forward way of running docker on mac)