### Description We could like to simplify our commands in a directory that holds many docker compose files Current ```bash docker compose -f file1.yml -f file2.yml -f file3.yml up ``` Desired: ```bash docker compose -f *.yml up ``` I couldn't find how to achieve this in the documentation. If it exists could you please provide a reference.