filmov
tv
25. Docker for Beginners | Install on Ubuntu | Play with busybox image | Rajiv
Показать описание
Docker: In this tutorial, you'll learn how to: install docker on Ubuntu, run an image as a container
Images - The blueprints of our application which form the basis of containers.
Containers - Created from Docker images and run the actual application.
Docker Daemon - The background service running on the host that manages building, running and distributing Docker containers. The daemon is the process that runs in the operating system which clients talk to.
Docker Client - The command line tool that allows the user to interact with the daemon.
Docker Hub - A registry of Docker images. we can think of the registry as a directory of all.
Install Docker on Ubuntu
Install using the repository
Verify Docker installation
Run hello-world image
Play with busybox
Docker top 10 commands
Docker –help
docker images - list all images
docker image\container ls –a
docker run image_name – Run container based on the image_name
docker ps - containers that are currently running
docker status|stop|restart
docker exec
docker logs container_name
docker rm container_id – Clean up unused container
docker container prune – Remove all stopped container
Images - The blueprints of our application which form the basis of containers.
Containers - Created from Docker images and run the actual application.
Docker Daemon - The background service running on the host that manages building, running and distributing Docker containers. The daemon is the process that runs in the operating system which clients talk to.
Docker Client - The command line tool that allows the user to interact with the daemon.
Docker Hub - A registry of Docker images. we can think of the registry as a directory of all.
Install Docker on Ubuntu
Install using the repository
Verify Docker installation
Run hello-world image
Play with busybox
Docker top 10 commands
Docker –help
docker images - list all images
docker image\container ls –a
docker run image_name – Run container based on the image_name
docker ps - containers that are currently running
docker status|stop|restart
docker exec
docker logs container_name
docker rm container_id – Clean up unused container
docker container prune – Remove all stopped container
Комментарии