65 comments

  • hks0 3 hours ago

    I did something (slightly) similar via proot, called Bag [1], which I must have not described as a docker alternative: It has nothing to do with cgroups, and the cli deviates from that of docker's.

    The backstory: To bypass internet censorship and deep packet inspection, I had written a proxy chain solution masquerading itself as plain html traffic. I needed it constantly running everywhere I went, but I didn't want to port it to a native android app. I wanted to run it through termux and at the time termux had no jdk/jre. Proot could spawn a archlinux env and there indeed was a jdk available.

    The arch env within termux turned out to be generally more suitable for all tasks. Creating and destroying ephemeral envs with different setups and prooting into them to just run a single command is easily automated with a script; I named it bag.sh, a drastically smaller form of a shipping container.

    Funny bag.sh also has a roadmap/todo in there untouched for 5 years! It's written on mobile screen hence mostly formatted to 40 columns lines to fit on the display without scrolling.

    [1]: https://github.com/hkoosha/bag

    • dataflow 3 hours ago

      FYI, I think you forgot some important quotes in your script. Try shellcheck?

      > mkdir -p $(dirname "$2")

  • random3 8 hours ago

    I love these. Been a fan of minimal bash stuff. Here's a proof of concept for a intra-cluster load balancer in 40 lines of bash done during a hackathon I organized to promote distributed infra with Docker, Mesos, etc. about a decade ago https://github.com/cell-os/metal-cell/blob/master/discovery/...

    I likely lost it, but I had a redundand and distributed reverse SSH tunnel based colo-to-cloud transfer tool.

    Shell Fu and others have good collections of these https://www.shell-fu.org/

  • Neywiny 5 hours ago

    I like when repos say "not implemented yet" or "to-do" or "working on" and the last commit was years ago. Makes me feel better about not going back to my to-dos I drop through my code. (Not meaning to throw shade on this author, just finding it comforting)

    • byearthithatius 4 hours ago

      Great point! It is not shade at all, you are trying to normalize this which I like. For unpaid, volunteer, or hobby code feeling a _need_ because its public can make coding less fun or prevent people from sharing code publicly they otherwise would.

    • ramon156 2 hours ago

      I feel like most — if not all — projects are never done. Knowing when to stop is important

  • oneeyedpigeon 20 minutes ago

    If the author happens to see this: the link to your homepage on GitHub is broken - drop the "www."

  • mythz 6 hours ago

    Surprised no one's mentioned lazydocker as a great alternative for Docker Desktop (on Linux/macOS/Windows) [1].

    It's a fairly full-featured Terminal UI that has the benefit of running over ssh:

    [1] https://github.com/jesseduffield/lazydocker

  • noctane 36 minutes ago

    Practicality aside, there seems to be a lot we can learn from the implementation.

  • sellmesoap 2 hours ago

    A brother from another mother: https://bastillebsd.org/ Bastille manages jails using shell with many of the same constructs you'd find in docker. I like it over other jail management software in BSD because it has so few dependencies.

  • mschuster91 9 hours ago

    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 achieve running Docker on one's development machine.

    • seabrookmx 9 hours ago

      Rancher desktop is also a viable option and free. Many including my work moved to it after Docker's new licensing kicked in.

      IMO the real magic of Docker was the Docker/OCI image format. It's a brilliant way to perform caching and distribute container images, and it's really what still differentiates the workflow from "full" VM's.

      • jml78 9 hours ago

        My main dev machine is Linux so I use Rancher Desktop but I also have a MacBook Pro m1 machine. Orbstack is so much better than rancher and docker desktop. I know they are a small company but hell if their product isn’t significantly more efficient and better.

        • kdrag0n 8 minutes ago

          Love to hear that :) sent you an email about the k8s IPv6 issue — should be able to get it fixed in OrbStack

        • fl0id 34 minutes ago

          Podman-Desktop is also great b/c it now has gpu support on macOS (for the Linux container)

        • throwaway817472 8 hours ago

          Completely agree. I moved from docker desktop to rancher after an update blew away my kubernetes cluster, and then from Rancher to Orbstack due to a number of bugs that were crashing the underlying VM. Orbstack has been rock solid (aside from one annoying networking issue), and it uses significantly less battery. They’ve done a fantastic job.

          • jml78 8 hours ago

            Only complaint is that my home network assigns IPv6 addresses and that fucks up external dns lookups for pods in Orbstack.

      • tryauuum 2 hours ago

        Related to image format, has anyone tried to use alternative image formats? There was a differnt format / filesystem for containers to leverage deduplication between different images (so the node won't need to fetch yet another copy of cuda / pytorch)

        • fire_lake 43 minutes ago

          This is common in the Bazel community.

    • magic_hamster 9 hours ago

      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.

      • skissane 9 hours ago

        > 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 the open source replacement wasn't as seamless. Some of these test scripts contained Java code directly talking to the Docker daemon over its Unix domain socket, so need the same API implemented. Many other scripts made heavy use of the Docker CLI. After spending a lot of time on it, it was decided to just go back to Docker Desktop for Mac. The failed migration had resulted in highly paid engineers spending time pulling their hair out trying to get test scripts to work instead of actually fixing bugs and delivering new features.

        Now, that was 2+ years ago now, and maybe the open source alternatives have caught up since, or maybe we picked the wrong one or made some other mistake. But I'm not rushing to try it again.

        • jml78 8 hours ago

          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 could get Orbstack to address this issue, I couldn’t find one other issue.

          Orbstack is crazy fast and way better than docker desktop overall

          • karmajunkie 4 hours ago

            i used it for a year or so then subscribed finally the other day. it really is well worth the money.

        • phinnaeus 6 hours ago

          I have a feeling we work at the same company. Well, maybe not, but we went through a strikingly similar experience around the same timeframe.

        • skydhash 8 hours ago

          I've just use a Debian arm virtual machine and be done with it (M1). If I'm going to run a VM regardless, may as well go with a full fledged one.

        • bhhaskin 8 hours ago

          Docker for Mac does run on Linux. Just a striped down lightweight vm. It's why file Io is complete shit. It's a network share.

      • notpushkin 4 hours ago

        Colima is the way to work with Docker on mac nowadays. I appreciate Docker Inc folks trying to get some money, but Docker Desktop is just not worth it.

      • syndicatedjelly 4 hours ago

        I've been using Docker CLI for Mac happily for years. What am I missing?

    • dilyevsky 8 hours ago

      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

      • mardifoufs 5 hours ago

        That's what people usually say but they have tried to do just that a few years ago and it didn't really work. Docker inc has been doing great since they have shifted towards even more standardization in their container runtime, and focused on dev tooling. They became profitable when they focused on Docker desktop and docker hub instead of trying to build a clunky alternative to kubernetes or yet another cloud orchestration tool/platform.

      • smt88 6 hours ago

        Docker was a spinoff of an internal tool used to build exactly the type of PaaS you're describing. It was like a better Heroku and I loved it, but they shut it down when they focused on commercializing Docker itself.

        • rudasn 3 hours ago

          dot cloud yes?

          I was surprised when they shut that down too.

      • jen20 7 hours ago

        Didn’t they buy at least one of these? It was garbage, and no one cared.

    • exceptione 3 hours ago

      I think Docker is really lucky that devs still think container=Docker.

      Podman is in many aspects superior, while still being able to function as a drop in.

    • acedTrex 9 hours ago

      I just use colima on macos, its a far better experience. Much lighter weight

    • maxloh 9 hours ago

      But Rancher Desktop does the same too (and is also open source).

    • airstrike 8 hours ago

      Docker for Mac is just unusable. They're not really adding any value there.

      • SadTrombone 8 hours ago

        Have you tried out Orbstack?

        • Bnjoroge 8 hours ago

          +1 on orbstack. near-perfect drop in

    • aryonoco 9 hours ago

      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.

      • hu3 5 hours ago

        Docker on Windows can use WSL2 engine for near native performance.

  • kondro 6 hours ago

    Isn’t this how Docker started?

  • WanderPanda 5 hours ago

    Makes me wonder why docker still didn't make it to the ubuntu/debian repositories. Would be such an easy net benefit

    • notpushkin 4 hours ago

      What do you mean? It's been there for years: https://packages.debian.org/docker.io

      It’s an old version, and I think it isn’t supported by Docker Inc (for the reasons mentioned in the sibling comment), but it’s there.

    • ddtaylor 5 hours ago

      (a) Docker wants to bundle vendor libraries instead of using other packages and (b) Canonical uses LXD and MicroK8s instead.

  • yeldarb 7 hours ago

    Is there any Docker alternative on Mac that can utilize the MPS device in a container? ML stuff is many times slower in a container on my Mac than running outside

    • habitue 7 hours ago

      The issue you're running into is that to run docker on mac, you have to run it in a vm. Docker is fundamentally a linux technology, so first emulate x86_64 linux, then run the container. That's going to be slow.

      There are native macos containers, but they arent very popular

      • AbuAssar 7 hours ago

        Docker can run ARM64 linux kernel, no need to emulate x86

        • majormajor 6 hours ago

          You still pay the VM penalty, though it's a lot less bad than it used to be. And the Arm MacBooks are fast enough that IME they generally compare well against Intel Linux laptops even then now. But it sounds like first-class GPU access (not too surprisingly) isn't there yet.

    • fl0id 31 minutes ago

      Podman-Desktop can do it

  • amelius 8 hours ago

    Does it require root access to the machine I have a user account on?

    • schmichael 4 hours ago

      Yes, from the README:

      > 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.

  • aussieguy1234 4 hours ago

    While not good for daily driving, this gives you an idea on what docker is and how it works.

    On Linux, docker is basically fancy chroot.

    • musicale 3 hours ago

      On macOS/Windows/etc., docker is basically fancy chroot in a linux VM.

  • yalogin 6 hours ago

    Is the original docker just a script? Have they not added anything to the container story themselves?

  • dcreater 8 hours ago

    Very interesting. With how standard containerization has become, we sorely need an FOSS solution

    • tsujamin 8 hours ago

      Don’t we have them? I only casually use containers, but what about podman, runc, systemd-nspawn, LXC etc?

    • wmf 8 hours ago

      If Docker isn't open enough for you, check out Podman (now with extra CNCF).

    • MrDrMcCoy 8 hours ago

      Why not podman?

      • osigurdson 6 hours ago

        Agree. Not sure about mac but on Windows, Podman + WSL works well. No need for podman desktop either, the cli vwrsion is fine.