So right now I have a single compose file with a file structure like this:
docker/ ├─ compose/ │ ├─ docker-compose.yml ├─ config/ │ ├─ service1/ │ ├─ service2/Would you in that case use a structure like the following?
docker/ ├─ service1/ │ ├─ config/ │ ├─ docker-compose.yml ├─ service2/ │ ├─ config/ │ ├─ docker-compose.ymlOr a different folder structure?