I trying to create network in docker-compose.vs.debug.yml file:
networks:
  myNetwork:
    driver: bridge
But docker adding some identifier:
docker network ls ->
NETWORK ID          NAME                                         DRIVER              SCOPE 
0e1fec1a9a30        dockercompose1163770330_myNetwork            bridge              local
If there any option to name it like this:
NETWORK ID          NAME                                         DRIVER              SCOPE
0e1fec1a9a30        myNetwork                                    bridge              local
I need it to connect automatically two containers on separate projects.