1
Include doesn't work like I'd like
(lazysoci.al)
docker compose
Yep, that's what I'm talking about
My bad I misread. I don't think you can include multiple compose files into one in a clean way.
There are profiles which you could look into but I am not sure whether that would work like you want.
services:
app1:
profiles: ["project1"]
...
app2:
profiles: ["project2"]
...
docker compose --profile project1 up
Personally I use dokploy, but thats a whole big ass project. It can manage multiple compose files (among many other features). https://github.com/Dokploy/dokploy
Maybe look for a more minimal alternative. Like https://github.com/beanworks/dcm
Actually I just remembered hearing good things about https://github.com/louislam/dockge
Thank you. Will look into dockge for sure.