എന്താണ് ഡോക്കർ ? അടിസ്ഥാന വിവരങ്ങൾ Docker Basic Tutorial in Malayalam

Опубликовано: 24 Июль 2026
на канале: Fullstack Malayalam
7,974
208

Docker basic tutorial in Malayalam

Basic Docker commands

//Build the docker image
docker build -t youtube:latest .

//Run Image
docker run -d -it -p 80:3000 youtube:latest

//List images
docker images

//Delete an image
docker image rm [image id]

//Stop a container instance
docker stop [instance id] or [instance name]

//Start a stopped container instance
docker start [instance id[ or [instance name]

//List running instances ( containers )
docker ps

//List all instances
docker ps -a

//Delete an instance
docker rm [instance id] or [instance name]

By default public registry is Docker Hub
Other Container Registries are
ACR ( Azure Container Registry) Azure Cloud
ECR ( Elastic Container Registry) AWS Cloud
GCR ( Google Container Registry) Google Cloud
All other cloud providers have their own registries