Yes, there is definitely a command in docker which will let you know about the containers attached to the bridge network which you have created.
Here is what you can try.
docker network inspect bridge
Under the Containers key, you can see all the connected container along with information about its IP address.
I hope the above information will resolve your query.