The fact how simple it is to re-implement a large part of Docker because all it fundamentally is a bit of glue code to the kernel is the biggest problem Docker-the-company faced and still faces. Where Docker adds real value is not (just) Docker Hub but Docker for Windows and Mac. The integrations offer a vastly superior experience than messing around with VirtualBox and Vagrant by hand (been there, done that) to achi…
Docker for Windows and Mac are both bloated pieces of software, outperformed by Rancher Desktop and Orbstack. Docker's only real innovation was the OCI format, which it had to give away for it to become an industry standard, and now doesn't own.
Bocker: Docker implemented in around 100 lines of Bash (2015)
41–50 of 118 posts
Re: Bocker: Docker implemented in around 100 lines of Bash (2015)
#42The fact how simple it is to re-implement a large part of Docker because all it fundamentally is a bit of glue code to the kernel is the biggest problem Docker-the-company faced and still faces. Where Docker adds real value is not (just) Docker Hub but Docker for Windows and Mac. The integrations offer a vastly superior experience than messing around with VirtualBox and Vagrant by hand (been there, done that) to achi…
Nah, they should have prioritized building some sort of PaaS solution like CloudRun, Render or Fly so they can sell that to enterprises for $$$. Instead they did half-baked docker swarm which never really worked reliably and then lost ground to k8s rapidly
Re: Bocker: Docker implemented in around 100 lines of Bash (2015)
#43Earlier quoted context omitted.
If Docker isn't open enough for you, check out Podman (now with extra CNCF).
how is docker open in any way? https://i.imgur.com/2F0JmUw.png
Re: Bocker: Docker implemented in around 100 lines of Bash (2015)
#44Re: Bocker: Docker implemented in around 100 lines of Bash (2015)
#45Makes me wonder why docker still didn't make it to the ubuntu/debian repositories. Would be such an easy net benefit
Re: Bocker: Docker implemented in around 100 lines of Bash (2015)
#46Re: Bocker: Docker implemented in around 100 lines of Bash (2015)
#47The fact how simple it is to re-implement a large part of Docker because all it fundamentally is a bit of glue code to the kernel is the biggest problem Docker-the-company faced and still faces. Where Docker adds real value is not (just) Docker Hub but Docker for Windows and Mac. The integrations offer a vastly superior experience than messing around with VirtualBox and Vagrant by hand (been there, done that) to achi…
Docker Desktop on Mac is a handicapped, underprivileged mess. Docker cli for Mac with Colima is still underprivileged, but at least you can skip the bs license and Docker's gui. On Windows you can at least use Docker on WSL which works great. Why use Docker Desktop is beyond me.
Re: Bocker: Docker implemented in around 100 lines of Bash (2015)
#48Does it require root access to the machine I have a user account on?
> Bocker runs as root and among other things needs to make changes to your network interfaces, routing table, and firewall rules. I can make no guarantees that it won't trash your system.
Linux makes it quite hard to run "containers" as an unprivileged user. Not impossible! https://github.com/rootless-containers/rootlesskit is one approach and demonstrates much of the difficulty involved. Networking is perhaps the most problematic. Your choices are either setuid binaries (so basically less-root as opposed to root-less) or usermode networking. slirp4netns is the state of the art here as far as I know, but not without security and performance tradeoffs.
Re: Bocker: Docker implemented in around 100 lines of Bash (2015)
#49Earlier quoted context omitted.
> Why use Docker Desktop is beyond me. I lived through a failed attempt to migrate from Docker Desktop for Mac to an open source alternative (minikube+portainer, IIRC). A lot of test scripts developers relied on – to run parts of the integration test suite on their laptops for debugging – broke, because Docker Desktop for Mac went to a lot of effort to make macOS look like you were running Docker on Linux, whereas th…
I would look at Orbstack. Yes it costs money but it is pretty great. Your situation sounds very similar to the company I work for. Orbstack has been a drop in replacement except one issue. Any dev using IPv6 assignment on their home network has issues where pods try to hit external dns because it tries to use IPv6 and I don’t think the Orbstack k8s instance is dual stack. There are hacks to get around it but if I cou…
Re: Bocker: Docker implemented in around 100 lines of Bash (2015)
#50On Linux, docker is basically fancy chroot.