Remix.run Logo
nkmnz 2 hours ago

Could I use this for running the same docker compose stack multiple times in parallel? I wrote a lot of bash glue code to make this happen (without kubernetes) for integration and acceptance testing on a single server. Managing envs and networking was a pain, but mostly, I struggle to keep it up to date with infrastructure changes in my platform.

bewuethr an hour ago | parent | next [-]

Have you tried Tilt? https://tilt.dev/

nkmnz an hour ago | parent [-]

No, I haven't. Can you elaborate how you think it could help me? Couldn't figure it out from reading the docs, tbh.

mlnj 19 minutes ago | parent [-]

I love Tilt.

With a single Tilt file combined with a docker compose file, almost all of the infrastructure you need is configured on a local machine. It also supports running kubernetes (most of the docs are around this), but you do not necessarily need to it it.My goto when I have more then 2 docker containers/services I want to keep changing code for. Some teams I work with usually have 20 such containers for local dev.

And yes, you can even nest Tilt files and even write normal python if you want to mix things up.

sandGorgon an hour ago | parent | prev [-]

yes. fixing this right now. you will have it in a day or two.

nkmnz an hour ago | parent [-]

Would certainly try this out!