Ask HN: Docker for a Mac App?
1–10 of 16 posts
Re: Ask HN: Docker for a Mac App?
#2I would suggest looking at Homebrew.
Re: Ask HN: Docker for a Mac App?
#3No, Docker is not right for this, mostly because Docker does not actually run on Mac; it runs on a Linux VM. MacOS doesn't really support containers. I would suggest looking at Homebrew.
Many, many developers use Docker on Mac without issue
There is Docker Desktop and Colima you can use
Re: Ask HN: Docker for a Mac App?
#4Re: Ask HN: Docker for a Mac App?
#5Are your users technical enough to run containers and install Docker Desktop / Colima?
Re: Ask HN: Docker for a Mac App?
#6No, Docker is not right for this, mostly because Docker does not actually run on Mac; it runs on a Linux VM. MacOS doesn't really support containers. I would suggest looking at Homebrew.
containers on mac go through a VM Many, many developers use Docker on Mac without issue There is Docker Desktop and Colima you can use
Q: I need to run existing Docker containers on my Mac.
A: You have to use a VM; it's no big deal.
Q: What's the best way to package a new native Mac app?
A: Not containers.
Re: Ask HN: Docker for a Mac App?
#7Earlier quoted context omitted.
containers on mac go through a VM Many, many developers use Docker on Mac without issue There is Docker Desktop and Colima you can use
There's two different things here. Q: I need to run existing Docker containers on my Mac. A: You have to use a VM; it's no big deal. Q: What's the best way to package a new native Mac app? A: Not containers.
Re: Ask HN: Docker for a Mac App?
#8Re: Ask HN: Docker for a Mac App?
#9Are your users technical enough to run containers and install Docker Desktop / Colima?
Thanks verdverm, my user's aren't technical at all, they can install a .dmg file in their macs, but nothing beyond that
Re: Ask HN: Docker for a Mac App?
#10Earlier quoted context omitted.
There's two different things here. Q: I need to run existing Docker containers on my Mac. A: You have to use a VM; it's no big deal. Q: What's the best way to package a new native Mac app? A: Not containers.
Thank you very much, wmf, for clarifying. I am doing some research to replace the Java dependencies with Python exclusively, so I can create a .dmg installer using PyInstaller or similar tool. This appears to be a more straightforward approach