Summary
Keywords
Full Transcript
Hi, I am Raghav and Today we will learn : 1. What are Containers 2. How to create Containers 3. How to start / stop Containers 4. Basic Commands TIPS & TRICKS What are Containers: Containers are running instances of Docker Images COMMANDS : docker ps : docker run ImageName : docker start ContainerName/ID : docker stop ContainerName/ID : docker pause ContainerName/ID : docker unpause ContainerName/ID : docker top ContainerName/ID : docker stats ContainerName/ID : docker attach ContainerName/ID : docker kill ContainerName/ID : docker rm ContainerName/ID : docker history ImageName/ID References: https://www.google.co.in/search?rlz=1C5CHFA_enIN734IN734&biw=1280&bih=703&tbm=isch&q=docker+containers&chips=q:docker+containers,g_5:architecture+docker&sa=X&ved=0ahUKEwiRhIOgkYXcAhVEqo8KHYjABTcQ4lYIMCgA#imgrc=AfGnqueGte31MM: https://docs.docker.com/engine/reference/commandline/container/#child-commands Notes A container image is a lightweight, stand-alone, executable package of a piece of software that includes everything needed to run it: code, runtime, system tools, system libraries, settings. Features of Containers: Are lightweight Fewer resources are used Booting of containers is very fast Can start, stop, kill, remove containers easily and quickly Operating System resources can be shared within Docker Containers run on the same machine sharing the same Operating system Kernel, this makes it faster You can use the command docker container create to create a container in stopped state _____________________________________________________________ #DockerContainers #WhatIsDocker #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners #DockerFreeTutorials #DockerforDevOps DOCKER PLAYLIST https://www.youtube.com/playlist?list=PLhW3qG5bs-L99pQsZ74f-LC-tOEsBp2rK YOUTUBE PLAYLIST https://www.youtube.com/channel/UCTt7pyY-o0eltq14glaG5dg/playlists YOUTUBE https://www.youtube.com/automationstepbystep FACEBOOK https://www.facebook.com/automationstepbystep TWITTER https://twitter.com/automationsbs If you like videos on the channel Automation Step by Step, hit the like button and share with others. Click the SUBSCRIBE button and hit the bell icon to keep getting new videos. ________ ONLINE COURSES TO LEARN ________ Visit - https://automationstepbystep.com/ ------------ Follow ------------ Youtube - http://youtube.com/automationstepbystep Share your knowledge with everyone and, Never Stop Learning Raghav https://automationstepbystep.com/
