• Arghblarg@lemmy.ca
    link
    fedilink
    arrow-up
    81
    arrow-down
    28
    ·
    13 days ago

    Call me crusty, old-fart, unwilling to embrace change… but docker has always felt like a cop-out to me as a dev. Figure out what breaks and fix it so your app is more robust, stop being lazy.

    I pretty much refuse to install any app which only ships as a docker install.

    No need to reply to this, you don’t have to agree and I know the battle has been already lost. I don’t care. Hmmph.

    • Michal@programming.dev
      link
      fedilink
      arrow-up
      47
      arrow-down
      4
      ·
      13 days ago

      Docker is more than a cop out for than one use case. It’s a way for quickly deploy an app irrespective of an environment, so you can scale and rebuild quickly. It fixes a problem that used to be solved by VMs, so in that way it’s more efficient.

      • pfm@scribe.disroot.org
        link
        fedilink
        arrow-up
        10
        arrow-down
        24
        ·
        13 days ago

        Well, nope. For example, FreeBSD doesn’t support Docker – I can’t run dockerized software “irrespective of environment”. It has to be run on one of supported platforms, which I don’t use unfortunately.

        • mosiacmango@lemm.ee
          link
          fedilink
          arrow-up
          30
          arrow-down
          3
          ·
          edit-2
          13 days ago

          A lack of niche OS compatibility isn’t much of a downside. Working on 99.9% of all active OS’s is excellent coverage for a skftware suite.

          Besides, freebsd has podman support, which is something like 95% cross compatible with docker. You basically do have docker support on freebsd, just harder.

        • Toribor@corndog.social
          link
          fedilink
          English
          arrow-up
          14
          arrow-down
          1
          ·
          13 days ago

          To deploy a docker container to a Windows host you first need to install a Linux virtual machine (via WSL which is using Hyper-V under the hood).

          It’s basically the same process for FreeBSD (minus the optimizations), right?

          Containers still need to match the host OS/architecture they are just sandboxed and layer in their own dependencies separate from the host.

          But yeah you can’t run them directly. Same for Windows except I guess there are actual windows docker containers that don’t require WSL but if people actually use those it’d be news to me.

    • Zikeji@programming.dev
      link
      fedilink
      English
      arrow-up
      32
      arrow-down
      1
      ·
      13 days ago

      If this is your take your exposure has been pretty limited. While I agree some devs take it to the extreme, Docker is not a cop out. It (and similar containerization platforms) are invaluable tools.

      Using devcontainers (Docker containers in the IDE, basically) I’m able to get my team developing in a consistent environment in mere minutes, without needing to bother IT.

      Using Docker orchestration I’m able to do a lot in prod, such as automatic scaling, continuous deployment with automated testing, and in worst case near instantaneous reverts to a previously good state.

      And that’s just how I use it as a dev.

      As self hosting enthusiast I can deploy new OSS projects without stepping through a lengthy install guide listing various obscure requirements, and if I did want to skip the container (which I’ve only done a few things) I can simply read the Dockerfile to figure out what I need to do instead of hoping the install guide covers all the bases.

      And if I need to migrate to a new host? A few DNS updates and SCP/rsync later and I’m done.

      • Toribor@corndog.social
        link
        fedilink
        English
        arrow-up
        7
        ·
        13 days ago

        I’ve been really trying to push for more usage of dev containers at my org. I deal with so much hassle helping people install dependencies and deal with bizarre environment issues. And then doing it all over again every time there is turnover or someone gets a new laptop. We’re an Ops team though so it’s a real struggle to add the additional complexity of running and troubleshooting containers on top of mostly new dev concepts anyway.

        • Zikeji@programming.dev
          link
          fedilink
          English
          arrow-up
          5
          ·
          13 days ago

          So far I’ve helped my team of 5 get on them. Some other teams are starting as well. We’ve got Windows, Linux, and Mac OSX that developers are running on their work machine (for now), and the only container specific issue we ever encounter is port conflicts, which are well documented with easy to change environment variables to control.

          The only real caveat right now is we have a bunch of micro services, and so their supporting services (redis, mariadb, etc.) end up running multiple times, so their is some performance loss from that. But they’re all designed to be independent, only talking to each other via their API, so the approach works.

        • Arghblarg@lemmy.ca
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          13 days ago

          Agreed there – it’s good for onboarding devs and ensuring consistent build environment.

          Once an app is ‘stable’ within a docker env, great – but running it outside of a container will inevitably reveal lots of subtle issues that might be worth fixing (assumptions become evident when one’s app encounters a different toolchain version, stdlib, or other libraries/APIs…). In this age of rapid development and deployment, perhaps most shops don’t care about that since containers enable one to ignore such things for a long time, if not forever…

          But like I said, I know my viewpoint is a losing battle. I just wish it wasn’t used so much as a shortcut to deployment where good documentation of dependencies, configuration and testing in varied environments would be my preference.

          And yes, I run a bare-metal ‘pet’ server so I deal with configuration that might otherwise be glossed over by containerized apps. Guess I’m just crazy but I like dealing with app config at one layer (host OS) rather than spread around within multiple containers.

          • Clent@lemmy.dbzer0.com
            link
            fedilink
            English
            arrow-up
            2
            ·
            13 days ago

            The container should always be updated to march production. In a non-container environment every developer has to do this independently but with containers it only has to be done once and then the developers pull the update which is a git style diff.

            Best practice is to have the people who update the production servers be responsible for updating the containers, assuming they aren’t deploying the containers directly.

            It’s essentinally no different than updating multiple servers, except one of those servers is then committed to a local container respository.

            This also means there are snapshots of each update which can be useful in its own way.

        • jjjalljs@ttrpg.network
          link
          fedilink
          arrow-up
          1
          ·
          13 days ago

          …what do you mean by using dev containers? Are your people doing development on their host machine?

          • Toribor@corndog.social
            link
            fedilink
            English
            arrow-up
            1
            ·
            12 days ago

            Mostly infrastructure as code with folks installing software natively on their windows host (terraform, ansible, powershell modules, but we also do some NPM stuff too). I’m trying to get people used to running a container instead of installing things on their host so I don’t have to chase people down when they run commands using the wrong version or something.

      • msage@programming.dev
        link
        fedilink
        arrow-up
        4
        arrow-down
        2
        ·
        13 days ago

        You know, all this talk about these benefits… when PHP has had this for ages, no BS needed.

        I’ll see myself out.

    • ramble81@lemm.ee
      link
      fedilink
      arrow-up
      21
      arrow-down
      3
      ·
      13 days ago

      I hate that it puts package management in Devs hands. The same Devs that usually want root access to run their application and don’t know a vulnerability scan for the life of them. So now rather than having the one up to date version of a package on my system I may have 3 different old ones with differing vulnerabilities and devs that don’t want to change it because “I need this version because it works!”

    • QuazarOmega@lemy.lol
      link
      fedilink
      arrow-up
      12
      arrow-down
      1
      ·
      13 days ago

      Docker or containers in general provide isolation too, not just declarative image generation, it’s all neatly packaged into one tool that isn’t that heavy on the system either, it’s not a cop out at all.

      If I could choose, not for laziness, but for reproducibility and compatibility, I would only package software in 3 formats:

      • Nix package
      • Container image
      • Flatpak

      The rest of the native packaging formats are all good in their own way, but not as good. Some may have specific use cased that make them best like Appimage, soooo result…
      Yeah, no universal packaging format yet

    • BatmanAoD@programming.dev
      link
      fedilink
      arrow-up
      6
      ·
      13 days ago

      I agree that it’s a “cop-out”, but the issue it mitigates is not an individual one but a systemic one. We’ve made it very, very difficult for apps not to rely on environmental conditions that are effectively impossible to control without VMs or containerization. That’s bad, but it’s not fixable by asking all app developers to make their apps work in every platform and environment, because that’s a Herculean task even for a single program. (Just look at all the compatibility work in a codebase that really does work everywhere, such as vim.)

    • Aceticon@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      3
      ·
      edit-2
      12 days ago

      It eliminates the dependency of specific distributions problem and, maybe more importantly, it solves the dependency of specific distribution versions problem (i.e. working fine now but might not work at all later in the very same distribution because some libraries are missing or default configuration is different).

      For example, one of the games I have in my GOG library is over 10 years old and has a native Linux binary, which won’t work in a modern Debian-based distro by default because some of the libraries it requires aren’t installed (meanwhile, the Windows binary will work just fine with Wine). It would be kinda deluded to expect the devs would keep on updating the Linux native distro (or even the Windows one) for over a decade, whilst if it had been released as a Docker app, that would not be a problem.

      So yeah, stuff like Docker does have a reasonable justification when it comes to isolating from some external dependencies which the application devs have no control over, especially when it comes to future-proofing your app: the Docker API itself needs to remain backwards compatible, but there is no requirement that the Linux distros are backwards compatible (something which would be much harder to guarantee).

      Mind you, Docker and similar is a bit of a hack to solve a systemic (cultural even) problem in software development which is that devs don’t really do proper dependency management and just throw in everything and the kitchen sink in terms of external libraries (which then depend on external libraries which in turn depend on more external libraries) into the simplest of apps, but that’s a broader software development culture problem and most of present day developers only ever learned the “find some library that does what you need and add it to the list of dependencies of your build tool” way of programming.

      I would love it if we solved what’s essentially the core Technical Architecture problem of in present day software development practices, but I have no idea how we can do so, hence the “hack” of things like Docker of pretty much including the whole runtime environment (funnilly enough, a variant of the old way of having your apps build statically with every dependency) to work around it.

    • pfm@scribe.disroot.org
      link
      fedilink
      arrow-up
      2
      arrow-down
      3
      ·
      13 days ago

      I don’t refuse to install dockerized software - but my system does. While for some people this might be unthinkable, not everyone runs Linux or some proprietary shit. There are many reasons to be unhappy with the trend.