Basically Everyone Should Be Avoiding Docker
31–40 of 103 posts
Re: Basically Everyone Should Be Avoiding Docker
#32I like docker because it makes it super easy to try out apps that I don’t necessarily know that I want and I can just delete it. I’m also confused about the claim that there is no config file… everyone I know uses docker compose, that’s really the only right way to use docker, using a single docker command is for testing or something, if you’re actually using the app long term, use docker compose. Also most apps I us…
Re: Basically Everyone Should Be Avoiding Docker
#33Re: Basically Everyone Should Be Avoiding Docker
#34Earlier quoted context omitted.
When I encounter a README/INSTALL that advises Docker, I start to suspect that the package is a mess. I'm sure there are legitimate usages within enterprise-y scenarios, but it has commonly become a way to paper over other issues.
This is definitely true. You see it constantly in deep learning applications, where eg NVIDIA’s fancy fp8 stuff needs C++11 ABI, so they need to compile torch from source, which means everything with C++ dependencies on torch needs to be recompiled, and eventually it’s much easier to ship a container image. It can be done with an Ansible playbook, sure, if you don’t have to ever do anything else with your machine.
Re: Basically Everyone Should Be Avoiding Docker
#35Should this be titled "Basically everyone who doesn't know how to use Docker should be avoiding Docker"?
Re: Basically Everyone Should Be Avoiding Docker
#36Earlier quoted context omitted.
it really does allow easy setup with compose, multiple containers, different versions, etc. I have been setting up linux servers and desktops for decades but docker made it way easier for a lot of things I still have email server setups I would never dare try to touch with docker, but I know it is possible like a lot of things it has its uses and it's really good at what it does
i love the convenience and ease-of-use but worry about the security compared to full-blown vm
Re: Basically Everyone Should Be Avoiding Docker
#37Not that I think Docker should always be used. It’s a simple piece tech on the surface but explodes in complexity the more complicated you try to get.
All that said, this article feels detached from reality.
Re: Basically Everyone Should Be Avoiding Docker
#38Re: Basically Everyone Should Be Avoiding Docker
#39Why would you edit or delete files inside a running container? It’s ephemeral and supposed to be used stateless. You can attach volumes from host system if you need persistence.
Re: Basically Everyone Should Be Avoiding Docker
#40This has rather strong “old man yelling at clouds” vibes. OP: Learn docker and it stops being an “impenetrable wall.” Face it, you don’t want to use docker (or podman) because you are set in your ways. That’s fine, but it is not an argument for anyone else.
When I encounter a README/INSTALL that advises Docker, I start to suspect that the package is a mess. I'm sure there are legitimate usages within enterprise-y scenarios, but it has commonly become a way to paper over other issues.