I think we're getting faster at iterating on bringing up dev environments.
Silverblue is my favorite, but it's becoming common for me to develop everything within a docker image. As quickly as we're committing to a project, we're updating the env and rebuilding that image at the same time? I'm new to this.
I have a friend who's really big into k8s and ansible. Right now it feels like I'm toying around in 1 pod. He can bring up a set of services around the thing he's developing in a few minutes. I want his power. :x
It's called docker-compose, and it's really simple compared to even a 1 pod k8s. Or maybe I'm misunderstanding what you mean by bringing up a set of services.
Yeah seconding the recommendation for docker-compose, it's a great way to start up multiple services and once you know the syntax, pretty straightforward to use in my limited experience. You can essentially declaratively define which other Docker containers you want to start up (in which order), which volumes they can use, and which ports should be exposed.
Silverblue is my favorite, but it's becoming common for me to develop everything within a docker image. As quickly as we're committing to a project, we're updating the env and rebuilding that image at the same time? I'm new to this.
I have a friend who's really big into k8s and ansible. Right now it feels like I'm toying around in 1 pod. He can bring up a set of services around the thing he's developing in a few minutes. I want his power. :x