#9 All Docker Commands | MOST ASKED #|INTERVIEW QUESTIONS On DOCKER | Docker Tutorial For Beginners

preview_player
Показать описание
Watch the complete Course On Docker here:

Docker Commands
docker commands with examples
Docker Commands Tutorial
docker commands guide
docker commands explained
Docker tutorial
Docker videos
Docker Container Commands
Docker Demo
Docker Basics
Docker HandsOn
Docker for Absolute Beginner
Learn Docker Step by step
DevOps Tutorial
Devops Basics
Docker Tutorial for beginners
Docker From zero to Hero
Docker From Beginner to Expert
docker commands for mac
docker commands for windows
docker commands in linux
docker commands youtube
docker commands basics
docker commands overview
Docker Beginner Tutorial
Docker FAQ
Docker Interview Questions
Docker Commands With Examples
Docker Training
All Docker Commands You need to know
doker
dooker
dockre

**********************************************************************************
In this video, we will see the important docker commands related to
**********************************************************************************
00:00 - Basic Docker Commands.
04:51 - Docker Pull And Run Commands.
11:29 - Important Docker Container Commands.
23:02 - Docker Commands For Multiple Containers.
31:59 - Commands To Inspect And Analyze Docker Containers.
40:21 - Running Containers in Interactive Mode.
46:42 - Getting Shell Access For Running Container.
53:54 - Docker Images Commands
**********************************************************************************
: Docker management Commands
: docker version
: docker info
: docker run ubuntu
: docker container run ubuntu
**********************************************************************************
: pulling the docker images from the docker hub.
: docker pull nginx

: running the docker images as docker containers.
: docker run hello-world

: running the docker cotnainers in a way, so that they can be accessed from the browser or outside world.
: docker run tomcat -p 8080:8080
**********************************************************************************
- running the docker container in detached mode
: docker container run --publish 8080:8080 --detach tomcat

- Seeing the docker container logs
: docker container logs tomcat

- listing all the running docker containers
: docker container ps

- Naming the docker container
: docker container run --publish 8010:8080 --detach --name NginxContainer nginx

- Stopping the docker container with container id or container name
: docker container stop NginxContainer

- listing all the docker containers (running + stopped)
: docker container ps -a

- Starting the docker container with container id or container name
: docker container start NginxContainer

- Removing the docker container with container id or container name
: docker container rm NginxContainer

- Removing the docker container forcefully with container id or container name
: docker container rm -f NginxContainer
**********************************************************************************
- Stopping multiple docker containers by specifying container id's or container name's
: docker container stop containerid1 containerId2 ... ContainerNameN

- Starting multiple docker containers by specifying container id's or container name's
: docker container start containerid1 containerId2 ... ContainerNameN

- Stopping all the running docker containers
: docker container stop $(docker ps -q)

- Starting all the stopped docker containers
: docker container start $(docker ps -q -a)

- Removing or Deleting all the docker containers forcefully.
: docker container rm -f $(docker ps -q -a)
**********************************************************************************
- to list all the process running in the specified docker container
: docker container top containerid
: docker container top ContainerName

- List Down All the configurations which are used to start the docker container
: docker container inspect containerid or ContainerName

- to display the live performance of the specified docker container like Docker containers CPU Utilization, Memory Usage etc.
: docker container stats containerid
: docker container stats ContainerName

- to display the live performance of all the running docker containers
: docker container stats

- to give the alias for any docker command.
: alias aliasName = docker command

#dockercommands #dockerbasiccommands #dockerbeginnertutorial #dockerbeginnertutorials #learndocker #dockerforbeginners #dockerhowtopullimage #dockerhowtoremoveimage #dockerhowtoremovecontainers #howtocheckspacetakenbydocker #howtocheckdockerlogs #dockerstepbystep #dockerbasics #dockerhowtocreatecontainer #dockerfordummies
#yt:cc=on #dockercommandswithexamples #dockertutorial #dockertraining #dockertutorialforbeginners #devopstutorial #devopstraining #dockercompose #dockerswarm #dockerpull #dockerrun #dockerbuild #dockerpush #dockerlogin #dockercontainer #dockerimages #dockerimport #dockerexport
Рекомендации по теме
Комментарии
Автор

डोकर कमांड्स को समझाने का ये प्रयास आपको कैसा लगा, कृपया कमेंट करके अवस्य बताएं 🙏
- Below playlist is recommended for Docker HandsOn :
Will see you in the next video! :)

laymanstechworld
Автор

Although is a long video, It was well structured...I watch it all the way to the end and I was able to grasp the full command basics...Congratulations for this video

albertojohnson
Автор

00:00 - Basic Docker Commands.
04:51 - Docker Pull And Run Commands.
11:29 - Important Docker Container Commands.
23:02 - Docker Commands For Multiple Containers.
31:59 - Commands To Inspect And Analyze Docker Containers.
40:21 - Running Containers in Interactive Mode.
46:42 - Getting Shell Access For Running Container.
53:54 - Docker Images Commands

laymanstechworld
Автор

Very well explained. Thank you so much Sir.

thedictatorx
Автор

Thanks for the video, Wonderful initiation.

tejkumarkempaiah
Автор

Please give the next link in the description. So it is easy to follow

sheetalconsultationandserv
Автор

very nice and clear explanation tq for the video

justwatchvideos
Автор

I did try to spin up tomcat and Nginx, The container are up and running and but when I try to verify the same using localhost:<container-port>, Its not displaying home page of tomcat/nginx respectively. Please let me know what might the issue.

tejkumarkempaiah
Автор

I tried running tomcat image using the following command - docker container run -d --name=tomcatcon -p 8082:8080 tomcat

Tomcat container works fine and is up and is up and running but the problem is that the following curl command does not work - curl localhost:8082 and gives connection refused.
Also directly hitting the url in browser does not work.

Upon inspecting the container I got IP and tried pinging it but even that does not work

Could you please help me understand where am I going wrong. FYI, I am usIng docker on windows

charugarg