Docker Basic Commands:
docker pull redis ///// Download docker image from dokcer hubdocker run “redis” //// start new container and running the image. Container is environment for running some images – for example “redis”docker run redis:4.0 ///// start new container and running the image with specific version.docker ps ////// For showing status of all running Containersdocker ps -a […]