I always used docker-compose on Ubuntu, in this environment containers are named with underscore:
- <project>_<service>_<replica>
But now, I switched to Windows 10 (using Docker Desktop) and naming convention has changed:
- <project>-<service>-<replica>
I don't know if this is OS dependent but it's a problem. My scripts are failing because they rely on containers named with underscores.
Is there a way to customize this and use underscore instead of dashes?


