docker network create -d bridge javahome
We are using official image of redis(This image comes from docker hub) by default redis container runs on 6379 port
docker run -d --name=redis --network=javahome redis:latest
Python is the application developed by me, so this image comes from my docker hub account(it is public)
docker run -d -p 8080:5000 --name=pythonap --network=javahome kammana/python-app:1
Open browser and put the following url http://:8080