How Docker Containers Really Talk to Each Other with Networks : My First Real DevOps Lesson
When I started learning Docker with a simple Spring Boot + MongoDB project, the tutor gave us two commands:
# Run the Spring Boot app
docker run -d -p 8080:8080 --name springapp \
--network jionetwork \
-e MONGO_DB_HOSTNAME=mongo \
-e MONGO_DB_...
blog.jaivardhan.online4 min read