Docker Raises Prices Up to 80 Percent | ServeTheHome (www.servethehome.com)
from Sunny@slrpnk.net to technology@lemmy.world on 13 Sep 2024 12:04
https://slrpnk.net/post/13290869

#technology

threaded - newest

RmDebArc_5@sh.itjust.works on 13 Sep 2024 12:34 next collapse

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

AreaKode@lemmy.world on 13 Sep 2024 12:36 next collapse

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

catloaf@lemm.ee on 13 Sep 2024 13:13 collapse

If you’re a business and need uptime you shouldn’t be using Docker Desktop in the first place

FourPacketsOfPeanuts@lemmy.world on 13 Sep 2024 13:18 collapse

You would be amazed

Warl0k3@lemmy.world on 13 Sep 2024 13:29 collapse

Not amazed, just depressed.

thorisalaptop@lemmy.world on 13 Sep 2024 12:45 next collapse

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.

magic_smoke@links.hackliberty.org on 13 Sep 2024 13:04 next collapse

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.

cyborganism@lemmy.ca on 13 Sep 2024 13:19 next collapse

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.

kameecoding@lemmy.world on 13 Sep 2024 15:53 collapse

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

UnsavoryMollusk@lemmy.world on 13 Sep 2024 16:26 collapse

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

squidspinachfootball@lemm.ee on 13 Sep 2024 17:23 collapse

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

UnsavoryMollusk@lemmy.world on 13 Sep 2024 19:37 collapse

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

squidspinachfootball@lemm.ee on 13 Sep 2024 20:44 collapse

That’s awesome, thanks! I use VSCodium too, will search it up later. That’ll be super useful.

aniki@discuss.tchncs.de on 13 Sep 2024 22:12 collapse

Most jetbrains IDEs also support container management

MigratingtoLemmy@lemmy.world on 13 Sep 2024 19:18 collapse

I am baffled as to why people want a GUI for Docker, of all things

sugar_in_your_tea@sh.itjust.works on 13 Sep 2024 19:42 next collapse

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.

thorisalaptop@lemmy.world on 13 Sep 2024 21:26 next collapse

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.

gencha@lemm.ee on 14 Sep 2024 07:50 collapse

They use Windows

rombert@lemmy.world on 13 Sep 2024 13:09 collapse

Ability to pull more images from Docker Hub.

cyborganism@lemmy.ca on 13 Sep 2024 13:20 collapse

Are you sure about that? I dunno if that’s correct.

rombert@lemmy.world on 13 Sep 2024 13:36 collapse

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.

kobra@lemm.ee on 13 Sep 2024 16:13 next collapse

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

cyborganism@lemmy.ca on 13 Sep 2024 19:35 collapse

Aw dang. That sucks. But I understand.

fuzzy_feeling@programming.dev on 13 Sep 2024 12:44 next collapse

the enshittification begins…

LedgeDrop@lemm.ee on 13 Sep 2024 15:26 collapse

Begins?!? Docker Inc was waist deep in enshittification the moment they started rate limiting docker hub, which was nearly 3 or 4 years ago.

This is just another step towards the deep end. Companies that could easily move away from docker hub, did so years ago. The companies that remain struggle to leave and will continue to pay.

WhatAmLemmy@lemmy.world on 13 Sep 2024 17:05 collapse

When that happened our DevOps teams migrated all our prod k8’s to podman, with zero issues. Docker who?

sudneo@lemm.ee on 13 Sep 2024 17:10 next collapse

Why would anybody use podman for k8s…containerd is the default for years.

1984@lemmy.today on 13 Sep 2024 17:56 collapse

Maybe you can run containerd with podman… I haven’t checked. I just run k3s myself.

sudneo@lemm.ee on 13 Sep 2024 18:57 collapse

Yeah, but you don’t need anything besides the runtime with kubernetes. Podman is completely unnecessary since kubelet does the container orchestration based on Kubernetes control plane. Running podman is like running docker, unnecessary attack surface for an API that is not used by anybody (in Kubernetes).

I run k0s at home, FWIW, tried k3s too :)

1984@lemmy.today on 13 Sep 2024 19:50 collapse

Yeah I know.

Interesting that you run k0s, hadn’t heard about it. Would you mind giving a quick review and compare it to k3s, pros and cons?

sudneo@lemm.ee on 13 Sep 2024 23:25 collapse

I can’t really make an exhaustive comparison. I think k3s was a little too opinionated for my taste, with lots of rancher logic in it (paths, ingress, etc.). K0s was a little more “bare”, and I had some trouble in the past with k3s with upgrading (encountered some error), while with k0s so far (about 2 years) I never had issues. k0s also has some ansible role that eases operations, I don’t know if now also k3s does. Either way, they are quite similar overall so if one is working for you, rest assured you are not missing out.

1984@lemmy.today on 14 Sep 2024 08:32 collapse

I watched some video on YouTube also where k0s seems to be slightly better at throughput, which can matter if your cluster is under heavy load a lot. But yeah, seems to be smaller differences and mostly about taste.

gencha@lemm.ee on 14 Sep 2024 07:45 collapse

Your choice of container runtime has zero impact on the rate-limits of Docker Hub. They probably had a container image proxy already and just switched because Docker is a security nightmare and needlessly heavy.

ExperiencedWinter@lemmy.world on 13 Sep 2024 12:47 next collapse

Anyone looking for a free drop in replacement, I’ve been using Rancher Desktop without any issues rancherdesktop.io

ClanOfTheOcho@lemmy.world on 13 Sep 2024 12:50 next collapse

I use this as well. I haven’t had any issues.

lostinasea@lemmy.world on 13 Sep 2024 12:58 next collapse

I’ve been using podman desktop (podman-desktop.io) which is also free. I’ve never heard of rancher desktop so I’ll have to give that a look!

SirAramis@lemmy.ca on 13 Sep 2024 13:13 next collapse

I second Podman. I’ve been using it recently and find it to be pretty good!

barsquid@lemmy.world on 13 Sep 2024 15:32 collapse

I am getting into Podman but I cannot force my firewall to respect it for some reason.

mosiacmango@lemm.ee on 13 Sep 2024 16:33 collapse

Rancher is owned by Suse, which is mainly a solid steward in the community.

They also have k8 frontend called Harvestor. It can run VMs directly, which is nice.

Scribbd@feddit.nl on 13 Sep 2024 17:23 collapse

Well, there is this one thing: they asked OpenSuse to drop the Suse branding…

bizarroland@fedia.io on 13 Sep 2024 17:41 collapse

Which is fair. Fedora never called itself red hat. CentOS never called itself red hat.

Suse is a pretty good company and deserves the right to their intellectual property and trademarks. OpenSuse shouldn't make a big deal out of simply changing their name.

They could rename themselves to OpenSusame and keep rolling without any issues whatsoever.

Petter1@lemm.ee on 13 Sep 2024 19:19 collapse

Of course, but I still think it is not very smart from SUSE, since I bet many companies got into SUSE because coworkers had very good experiences with OpenSUSE.

I, at least, if my company would need corporate Linux, would recommend SUSE to my company because of that reason.

Rade0nfighter@lemmy.world on 13 Sep 2024 13:02 next collapse

How does the image scanning compare to docker scout? (Or whatever the docket desktop one is called).

treadful@lemmy.zip on 13 Sep 2024 17:30 next collapse

So does this setup like a one-node kubernetes cluster on your local machine or something? I didn’t know that was possible.

chameleon@fedia.io on 13 Sep 2024 20:19 collapse

Basically yes. Rancher Desktop sets up K3s in a VM and gives you a kubectl, docker and a few other binaries preconfigured to talk to that VM. K3s is just a lightweight all-in-one Kubernetes distro that's relatively easy to set up (of course, you still have to learn Kubernetes so it's not really easy, just skips the cluster setup).

treadful@lemmy.zip on 13 Sep 2024 20:40 collapse

Thanks for the info. For others curious, here’s a decent short intro to K3s.

Now I’m kind of wondering if this is light enough for integration tests.

Endriu@lemmy.world on 14 Sep 2024 15:42 collapse

For integration tests I’d go with kind instead. Use it in my work and it works perfectly in our ci/CD. kind.sigs.k8s.io

Nithanim@programming.dev on 14 Sep 2024 15:38 collapse

I am exposing docker via tcp in wsl and set the env var on the host to point to it. A bit more manual but if you don’t need anything special, it works too.

heavy@sh.itjust.works on 13 Sep 2024 16:38 next collapse

Oh shit, what would I do without… Scout Analysis?

pastermil@sh.itjust.works on 13 Sep 2024 16:52 next collapse

Don’t you mean SWOT analysis?

treadful@lemmy.zip on 13 Sep 2024 17:20 collapse

You SWOT m8?

lando55@lemmy.world on 13 Sep 2024 21:38 collapse

sware on me scrum

vithigar@lemmy.ca on 13 Sep 2024 19:13 collapse

Recover several hundred GB of disk space, if my team’s experience was any indication.

Banichan@dormi.zone on 13 Sep 2024 16:46 next collapse

I’m sure “professionals” can afford $4

Kushan@lemmy.world on 13 Sep 2024 17:58 collapse

Our 200 developers all switched from docker desktop to rancher after Docker tried to jack up the price about a year and a half ago, along with a bunch of legal threats. Their attitude was so piss poor, we went from debating paying the higher fees to just fucking them off entirely.

I will pay $4 per user to NOT use Docker.

sugar_in_your_tea@sh.itjust.works on 13 Sep 2024 19:40 collapse

Hmm, I might have to do that at work. We pay for Docker, but we don’t actually use any of the features from Docker, the service. We build our images locally, and production pulls from AWS ECR, yet we all have Docker Hub licenses because my boss felt like we should be paying for it.

Docker works fine, but honestly, we don’t need it, and I have been considering eliminating Docker on my self-hosted stuff.

Kushan@lemmy.world on 14 Sep 2024 00:32 collapse

I love docker images, hate docker Inc.

Shimitar@feddit.it on 13 Sep 2024 16:53 next collapse

Podman guys… Podman All the way…

OpenPassageways@lemmy.zip on 13 Sep 2024 19:07 next collapse

I don’t think you even need Docker licenses to run Linux containers, but unfortunately I need to deal with this because I have some legacy software running in windows containers.

Shimitar@feddit.it on 14 Sep 2024 05:12 collapse

That’s not the point. Maybe you can, but for how long? you will never stop asking the question with docker…

Narwhalrus@lemmy.world on 13 Sep 2024 23:11 collapse

We’ve completely transitioned from docker to podman where I work. The only pain point was podman compose being immature compared to docker compose, but turns out you can run docker compose with podman using the podman socket easily.

Shimitar@feddit.it on 14 Sep 2024 05:11 next collapse

I think you wrote it back ways: transitioned from docker to podman?

Yeah podman should use quadlets, not compose, but still works just fine with docker compose and the podman socket!

Narwhalrus@lemmy.world on 14 Sep 2024 13:50 collapse

Oops. Thanks for the correction.

I hadn’t heard of quadlets. I’ll have to give them a look.

gencha@lemm.ee on 14 Sep 2024 07:42 collapse

I gave podman compose a fresh try just the other day and was happy to see that it “just worked”.

I’m personally pissed about aardvark-dns, which provides DNS for podman. The version that is still in Debian Stable sets a TTL of 24h on A record responses. This caused my entire service network to be disrupted whenever a pod restarted. The default behavior for similar resolvers is to set a TTL of 0. It’s like people who maintain it take it as an opportunity to rewrite existing solutions in Rust and implement all the bugs they can. Sometimes feels like someone just thought it would be a fun summer break project to implement DNS or network security.

randon31415@lemmy.world on 13 Sep 2024 17:50 next collapse

Is this the program that open source people use to install all the random depencies that their program needs to work? The one that people tell me to use when I complain about git bash pico sudo pytorch Install commands?

Or did another company copy their name?

Ferrous@lemmy.ml on 13 Sep 2024 18:02 next collapse

Nope. Docker doesn’t do that. That’s something else.

sugar_in_your_tea@sh.itjust.works on 13 Sep 2024 19:37 collapse

But it does in a lot of cases. At work, we use Docker images to bundle our dependencies for each microservice, and at home, I use Docker images for the same reason on my self-hosted repos. It’s fantastic for running servers in a sandbox so you don’t have to worry about what dependencies the host has.

But perhaps OP is talking about flatpaks instead.

gsfraley@lemmy.world on 13 Sep 2024 18:05 next collapse

I mean, they’re one implementor of about 10 that use the same container standards. It sucks that they were first so their name is now synonymous with containers a la Kleenex, but the technology itself is standard, very open and ubiquitous, and a huge step forward in simplifying deployments and development lifecycles that would otherwise be too complex to reasonably handle.

sugar_in_your_tea@sh.itjust.works on 13 Sep 2024 19:36 collapse

To be fair, I used LXC before Docker, so I’ve always called them “containers.” But I guess I’m old or something.

gencha@lemm.ee on 14 Sep 2024 07:49 collapse

Not having to install dependencies is a benefit of containers and their images. That’s a pretty big thing to miss. Maybe give it a closer look.

ColeSloth@discuss.tchncs.de on 13 Sep 2024 18:14 next collapse

Oh. This is /technology. I thought pants were about to go way up in price for a second.

Raiderkev@lemmy.world on 14 Sep 2024 08:55 collapse

Glad I’m not the only one

TrumpetX@programming.dev on 13 Sep 2024 19:07 next collapse

Podman or Rancher Desktop

silasmariner@programming.dev on 14 Sep 2024 08:30 collapse

Rancher got a lot better very quickly, but I’ve never used podman and have heard mixed things about it… Might give it a whirl at some point, but I’ve been saying that to myself for years

TrumpetX@programming.dev on 14 Sep 2024 15:48 collapse

I agree, Rancher Desktop over Podman Desktop. But if you want to cut out Docker CE completely, I think Podman is the only option.

beerclue@lemmy.world on 13 Sep 2024 19:12 next collapse

Are You guys really pulling more than 40 images per hour? Isn’t the free one enough?

sugar_in_your_tea@sh.itjust.works on 13 Sep 2024 19:35 next collapse

Even at work we don’t pull that many, and we have dozens of developers.

Schmeckinger@lemmy.world on 14 Sep 2024 12:51 collapse

Also its 40 per hour per user

aniki@discuss.tchncs.de on 13 Sep 2024 22:13 next collapse

We just build from scratch and pull nothing

pop@lemmy.ml on 14 Sep 2024 02:22 next collapse

On Lemmy, it’s a sin to make money off your work, especially if it is opensource core projects providing paid infrastructure/support. You can only ask for donations and/or quit. No in-between.

gencha@lemm.ee on 14 Sep 2024 07:29 next collapse

A single malfunctioning service that restarts in a loop can exhaust the limit near instantly. And now you can’t bring up any of your services, because you’re blocked.

I’ve been there plenty of times. If you have to rely on docker.io, you better pay up. Running your own NexusRM or Harbor to proxy it can drastically improve your situation though.

Docker is a pile of shit. Steer clear entirely of any of their offerings if possible.

beerclue@lemmy.world on 14 Sep 2024 09:36 collapse

I use docker at home and at work, nexus at work too. I really don’t understand… even a malfunctioning service should not pull the image over and over, there should be a cache… It could be some fringe case, but I have never experienced it.

gencha@lemm.ee on 16 Sep 2024 21:55 collapse

Ultimately, it doesn’t matter what caused you to be blocked from Docker Hub due to rate-limiting. When you’re in that scenario, it’s most cost efficient to buy your way out.

If you can’t even imagine what would lead up to such a situation, congratulations, because it really sucks.

Yes, there should be a cache. But sometimes people force pull images on service start, to ensure they get the latest “latest” tag. Every tag floats, not just “latest”. Lots of people don’t pin digests in their OCI references. This almost implies wanting to refresh cached tags regularly. Especially when you start critical services, you might pull their tag in case it drifted.

Consider you have multiple hosts in your home lab, all running a good couple services, you roll out that new container runtime upgrade to your network, it resets all caches and restarts all services. Some pulls fail. Some of them are for DNS and other critical services. Suddenly your entire network is down, and you can’t even get on the Internet, because your pihole doesn’t start. You can’t recover, because you’re rate-limited.

I’ve been there a couple of times until I worked on better resilience, but relying on docker.io is still a problem in general. I did pay them for quite some time.

This is only one scenario where their service bit me. As a developer, it gets even more unpleasant, and I’m not talking commercial.

Pieisawesome@lemmy.world on 14 Sep 2024 16:31 collapse

One of the previous places I worked at had about a dozen outbound IP addresses (company VPN).

We also had 10k developers who all used docker.

We exhausted the rate limit constantly. They paid for an unlimited account and we just would queue an automation that would pull the image and mirror it into the local artifact repo

model_tar_gz@lemmy.world on 14 Sep 2024 17:54 collapse

A enterprise company that has 10k developers should just invest in their own image hub. It’s not really that hard to do. Docker even open-sourced it under Apache2.0.

Pieisawesome@lemmy.world on 14 Sep 2024 23:15 collapse

They did.

Regardless they need a way to pull new ones.

xantoxis@lemmy.world on 13 Sep 2024 21:26 next collapse

Folks, the docker runtime is open source, and not even the only one of its kind. They won’t charge for that. If they tried to make it closed source, everyone would just laugh and switch to one of several completely free alternatives. They charge for hosting images, build time on their build servers, and various “premium” developer tools you don’t need. In fact, you need none of this, you can do all of it yourself on whatever hardware you deem to be good enough. There are also many other hosted alternatives out there.

Docker thinks they have a monopoly, for some reason. If you use the technology, you are probably already aware that they don’t.

OpenPassageways@lemmy.zip on 13 Sep 2024 23:43 next collapse

Does that include running Windows containers? It seems like the alternatives don’t support those.

areyouevenreal@lemm.ee on 13 Sep 2024 23:52 next collapse

Does anybody actually use that feature though?

rickyrigatoni@lemm.ee on 14 Sep 2024 02:12 collapse

There are always lost sheep in the fields.

cheet@infosec.pub on 14 Sep 2024 10:15 collapse

Windows container runtime is free as well, simply install the docker runtime from chocolatey or winget along with the Windows Containers and Hyper-V windows features. This is what we do on some build machines for CI.

Theres no reason to use desktop other than “ease of use”

TrumpetX@programming.dev on 14 Sep 2024 15:55 collapse

There are some reasons. Networking can get messed up, so Docker Desktop “fixed that” for you, but the dirty secret is it’s basically a Linux VM with Docker CE and some convenience network routes.

cheet@infosec.pub on 16 Sep 2024 15:54 collapse

Youre talking about Linux containers on Windows, I think commenter above was referring to windows containers on Windows, which is its own special hell for lucky folks like me.

Otherwise I totally agree. Ive done both setups without docker desktop.

hperrin@lemmy.world on 14 Sep 2024 07:04 collapse

If they tried to close source it, someone would just fork it.

Olgratin_Magmatoe@lemmy.world on 13 Sep 2024 21:44 next collapse

At work we get around this by not having docker or anything similar set up in the first place.

I’m getting tired of it lol

ArtVandelay@lemmy.world on 13 Sep 2024 23:02 next collapse

Are there any decent alternatives to docker hub for pushing images if I’m just a hobbyist?

areyouevenreal@lemm.ee on 13 Sep 2024 23:53 next collapse

Github has a container register you can use.

silasmariner@programming.dev on 14 Sep 2024 08:29 next collapse

Dunno if it’s decent but I’ve been hosting one service on quay.io since about 2017 and other than that time redhat changed the login system and I had to fart about for a few mins, I’ve never had any issues… Tbh though I probably only update that image about twice a year so I’m not exactly power-user-ing it

Telodzrum@lemmy.world on 14 Sep 2024 12:38 collapse
Wooki@lemmy.world on 14 Sep 2024 01:15 next collapse

Dev containers have been dead for a long time.

youtu.be/0YBWhSNTgV8?feature=shared

[deleted] on 14 Sep 2024 01:42 next collapse

.

Wooki@lemmy.world on 14 Sep 2024 09:34 collapse

Lol. Its the largest and most updated repo of any but by all means, “dozen” hahaha

youtu.be/0uixRE8xlbY

jim3692@discuss.online on 14 Sep 2024 10:26 collapse

Docker is not only about dependency management. It also offers service “composing”, via docker compose, and network isolation for each service.

Although I personally love Nix, and I run NixOS on some of my servers, I do not believe it can replace Docker/Podman. Unless you go the NixOS Containers route.

Wooki@lemmy.world on 14 Sep 2024 14:48 collapse

Interfaces,vlans and capable gateway. Except instead of the vendor lock in you have access to the gold standards of which all out scale

jim3692@discuss.online on 14 Sep 2024 23:00 collapse

I am trying to understand.

Docker, which uses OCI containers that are supported by Docker, Podman, Containerd, systemd-nspawn, etc, is lock-in.

But Nix Shells, which require Nix, are not lock-in.

Also, how are you going to run Nix shells in VLANs? They run on the host’s network namespace.

KellysNokia@lemmy.world on 14 Sep 2024 02:19 next collapse

Wait…y’all were paying for Docker?

lepinkainen@lemmy.world on 14 Sep 2024 15:45 collapse

Corp accounts, Docker Desktop isn’t free for non-personal use

KellysNokia@lemmy.world on 14 Sep 2024 21:18 collapse

That gives me an idea - managers can ask staff to learn the CLI and give them gift cards for what it would have cost to license the Docker Desktop client 🧠

gencha@lemm.ee on 14 Sep 2024 08:14 next collapse

Their entire offering is such a joke. I’m forced to use Docker Desktop for work, as we’re on Windows. Every time that piece of shit gets updated, it’s more useless garbage. Endless security snake oil features. Their installer even messes with your WSL home directory. They literally fuck with your AWS and Azure credentials to make it more “convenient” for you to use their cloud integrations. When they implemented that, they just deleted my AWS profile from my home directory, because they felt it should instead be a symlink to my Windows home directory. These people are not to be trusted with elevated privileges on your system. They actively abuse the privilege.

The only reason they exist is that they are holding the majority of images hostage on their registry. Their customers are similarly being held hostage, because they started to use Docker on Windows desktops and are now locked in. Nobody gives a shit about any of their benefits. Free technology and hosting was their setup, now they let everyone bleed who got caught. Prices will rise until they find their sweet spot. Thanks for the tech. Now die already.

Evoliddaw@lemmy.ca on 14 Sep 2024 10:49 next collapse

This speaks to my soul so much. I started at a non profit 2 years ago and it pains me how much the company spends on Oracle and docker now and no one does anything about it. So much of our infrastructure is built to rely on these things that we can’t just do without them when they do crazy shit like this. And Oracle and docker can afford to do this as long as a few cash cows hang on like us. Hostage is the worst and best description.

prole@lemmy.blahaj.zone on 14 Sep 2024 11:11 next collapse

I actually thought this headline was a joke (i.e. adding 80% of 0 to 0 equals 0), until I clicked the link to see that people actually pay for Docker? I guess this is for Enterprise?

I have never really had much use for it, so never have installed it, but it seems like everyone here uses Docker, which is surprising given the cost and what you just said.

linearchaos@lemmy.world on 14 Sep 2024 15:27 collapse

Yeah they witch hunt you pretty bad about using docker in Enterprise

khorak@lemmy.dbzer0.com on 14 Sep 2024 15:12 collapse

I switched to running docker inside wsl2 (installed as per their docs) and so far it’s been working well.

gencha@lemm.ee on 16 Sep 2024 18:44 collapse

It’s the way to go, but too difficult for most users in my experience. They rather just install Docker Desktop and use git bash. Sad reality

cupcakezealot@lemmy.blahaj.zone on 14 Sep 2024 12:07 next collapse

you didn’t need anything like docker with web 1.0; you just needed cuteftp and a text editor.

ATDA@lemmy.world on 14 Sep 2024 17:21 next collapse

Me, still using winscp for random nonsense.

dan@upvote.au on 14 Sep 2024 22:46 collapse

Surely you mean WS_FTP LE.

cupcakezealot@lemmy.blahaj.zone on 14 Sep 2024 22:48 collapse

ws_ftp was good but cuteftp supremacy

Telodzrum@lemmy.world on 14 Sep 2024 12:38 next collapse

podman.io

turkelton@lemmy.world on 14 Sep 2024 14:08 collapse

How is the transition from docker to podman? I’m using two compose scripts and like 10 containers each. And portainer to comfortably restart stuff on the fly

Telodzrum@lemmy.world on 14 Sep 2024 14:35 next collapse

I can only provide my experience; it was a drop-in replacement. I have 7 services running and 3 db containers. I was able to migrate using the Podman official instructions without issue.

Grass@sh.itjust.works on 14 Sep 2024 19:42 next collapse

from what I can gather its currently recommended to use quadlets to generate systemd units to achieve what compose was doing. podman compose is a thing but IIRC I didn’t find that was straight drop in and I had to change the syntax or formatting a bit for it to work and from the brief testing I have put in quadlets seems less hassle, but if you use a non systemd distro then I don’t know.

mlg@lemmy.world on 14 Sep 2024 20:20 collapse

I’d say about 99% is the same.

Two notable things that were different were:

  • Podman config file is different which I needed to edit where containers are stored since I have a dedicated location I want to use
  • The preferred method for running Nvidia GPUs in containers is CDI, which imo is much more concise than Docker’s Nvidia GPU device setup.

The second one is also documented on the CUDA Container Toolkit site, and very easy to edit a compose file to use CDI instead.

There’s also some small differences here and there like podman asking for a preferred remote source instead of defaulting to dockerhub.

ipkpjersi@lemmy.ml on 14 Sep 2024 15:53 next collapse

Enshitification is a very, very real thing. GitLab did something similar with raising pricing by 5x a few years back.

art@lemmy.world on 14 Sep 2024 16:36 collapse

Hot take: Good for them.

This will have zero impact on 99% of independent developers. Most small companies can move to an alternative or roll their own infrastructure. This will only really impact large corporations. I’m all for corporation-on-corporation violence. Let them fight.

corsicanguppy@lemmy.ca on 14 Sep 2024 20:29 collapse

This is a different take on the VMscare broadcom purchase.

The real losers here are SoHos where it is too pricy to migrate and also too pricy not to. I don’t know whether that’s in your 1% or 99% but:

  • devs don’t develop for infrastructure their customers don’t use. It’s as dead as LKC, then.
  • big customers have deprecated their VMware infra and are only spending on replacement products, and if they do the same for docker the company will suffer in a year.

If docker doesn’t have the gov/mil revenue, are we prepared for the company shedding projects and people as it shrinks?

Remember: when tech elephants fight, it’s we the grass who suffers.