The following setup:
I have "project A" set up with docker/docker-compose, that is a website. Then i have a different bundle - lets say "project B" set up with docker/docker-compose, that is a search-backend (elastic, etc).
Both are not composed in one file, so they dont know anything about eacht other.
Both containers/networks run locally (development). How do i add a hostname to a container in project A, that could request a container in project B?
i tried the "extra_host" option of docker-compose, but i dont know where to link my extra_host.
What i need is a bridge between 2 networks.