←back to thread

1101 points codesmash | 1 comments | | HN request time: 0.25s | source
Show context
dktalks ◴[] No.45139130[source]
If you are on a Mac, I have been using OrbStack[1] and it has been fantastic. I spin up few containers there, but my biggest use is just spinning up Alpine linux and then running most of my Docker containers in there.

[1] https://orbstack.dev/

replies(3): >>45139175 #>>45139615 #>>45139872 #
1. dktalks ◴[] No.45139175[source]
Setup is really easy once you install alpine

1. ssh orb (or machine name if you have multiple) 2. sudo apk add docker docker-cli-compose (install docker) 3. sudo addgroup <username> docker (add user to docker group) 4. sudo rc-update add docker default (set docker to start on startup)

Bonus, add lazydocker to manage your docker containers in a console

1. sudo apk add lazydocker