Hi @Yuvraj! Yes, this is possible.
You can sue the link flag for this.
When you launch the second container, use a command similar to this:
$ docker run -it --link redis1:redis --name redisclient1 busybox
The value provided to the — link flag is sourcecontainername:containeraliasname. We have chosen the value redis1 in the sourcecontainername
The above launch of the container (redisclient1) will lead you to the shell prompt.