• @RmDebArc_5
    link
    English
    605 days ago

    I thought docker was FOSS? What exactly are they charging you for?

    • @[email protected]
      link
      fedilink
      English
      99
      edit-2
      5 days ago

      Docker Engine (which is the core of what people think of as “Docker”) is FOSS. Docker Desktop (which most people rely on for local development) is free for individuals but I believe the license says companies over a certain size are required to pay.

      And on top of that the paid plans also come with support, which large businesses frequently require, and private repositories on docker’s image repository.

      • Cyborganism
        link
        fedilink
        English
        415 days ago

        This is the correct response.

        At my job we’ve been asked to remove Docker desktop unless it is absolutely necessary for a client project.

        I’ve just been using Docker through command line via WSL and that’s good enough for me.

        • @[email protected]
          link
          fedilink
          English
          135 days ago

          I don’t see any use for Docker Desktop, you can see the running containers in a gui instead of just typing docker ps in a terminal, damn what a fucking awesome and needed thing, it’s gonna totally come in handy when I do deployments through the terminal and I didn’t learn the commands

          • @[email protected]
            link
            fedilink
            English
            95 days ago

            Especially when your ide/editor has a plug-in that does the sane thing than docker desktop anyways

            • @[email protected]
              link
              fedilink
              English
              45 days ago

              I’m in the process of learning docker, can you share what that is? That sounds very helpful.

              • @[email protected]
                link
                fedilink
                English
                5
                edit-2
                5 days ago

                In VSCodium you have the docker plugin. It pretty much offers the same capabilities as the Docker desktop (view containers, images, etc. Allow to connect to the containers, to see their files, etc).

        • @[email protected]
          link
          fedilink
          English
          75 days ago

          I think docker desktop’s bigger value prop is that it’s a well supported zero-effort setup of a VM to run the docker daemon on platforms that don’t support it natively (i.e. MacOS which a lot of programmers use). And it very cleanly handles mounting your local filesystem into containers running in the VM, which is important for dev envs and used to be a source of friction with alternatives (although it seems like the competition has caught up and this also now works out of the box with rancher desktop and others?). Having a GUI is somewhere behind those, though I know folks who have a weird preference for GUIs 🤷‍♀️.

          I’m just a guy who uses Linux and spends most of his time in a terminal, so I’m not saying I value docker desktop, and I personally don’t have to deal with any of this so I’m probably behind on how good the alternatives are. Just saying where I see other people get use out of it.

        • @sugar_in_your_tea
          link
          English
          65 days ago

          We use it, and I honestly don’t see much value. I use 90% CLI, but occasionally it’s nice. I use macOS at work, so it’s nice to be able to see how much space the VM is using. Also, searching through logs is a little nicer through the GUI than the CLI.

          I actively avoid the GUI at home because, even on Linux, it’ll spin up a VM to host your containers, whereas if you stick with the CLI, there’s no VM, which solves soooo many headaches.

      • @[email protected]
        link
        fedilink
        English
        8
        edit-2
        5 days ago

        Glad I run everything in a VM. If you want my money you can accept donations, and sell support contracts.

        The moment you hide features or code behind a paywall or proprietary license, is the moment you no longer get my fucking money.

        Granted random weirdos who donate to FLOSS projects probably weren’t paying dockers bill anywho.

    • @[email protected]
      link
      fedilink
      English
      245 days ago

      Support. If your a business, you pay to keep uptime high. This is unnecessary for most people.

        • @[email protected]
          link
          fedilink
          English
          105 days ago

          Yes, in the sense that if you are a free user or unauthenticated and pull too often (including checking if a tag exists) you will get rate limited and have to wait or pay.

          • @[email protected]
            link
            fedilink
            English
            45 days ago

            Can confirm. Spent a bunch of time a few weeks ago setting up ECR pull through cache in AWS to alleviate this very issue.