⬅️ FEM Docker
- if I have two containers running at the same time how do they talk to each other?
- run
docker network ls
to checkout the default networks
docker network create --driver=bridge app-net
# then start a mongodb server
docker run -d --network=app-net -p 27017:27017 --name=db --rm mongo:3