Containers
- Applications(like Microservices,WebApp,DbApp etc) are deployed on containers
- A container is a standard unit of software that packages up code and all its dependencies so the application runs quickly and reliably from one computing environment to another.
Container Commands
Find help for all the commands related to container
docker container --help
Find help for a specified command of container ( In below example I am searching the options available for docker container ls command)
docker container ls --help
Run a Container in attached mode.
By default, Docker runs a container in the foreground.This means we can't return to our shell prompt until the process finishes.
docker container run -it ubuntu
In above example docker container runs in attached mode. -it option is used to run the container is interactive terminal.
Run a Container in detached mode(-d).
This command starts the container, prints its id, and then returns to the shell prompt.
docker container run -it -d ubuntu
Run a Container with a name (If you donot create the name of the container then docker assign some random name to the container)
We can use container name alternatively with Container id
docker container run -it --name c1 -d ubuntu
In above example c1 is the name of the container
Run a Container with limited memory
docker run -m 8m -dit --name web1 nginx
In above example web1 container will be created with 8mb memory allocation
Find the statistics of container web1
docker stats web1
Run Container with limited CPU Allocation
docker run -c 614 -dit --name db nginx
docker run -c 410 -dit --name web nginx
Will give 60% to the db container (614 is 60% of 1024) and 40% to the web container
Inspect a Container
docker inspect web
With above command we can inspect/debug web container
Find logs of a container
docker logs web
Above command displays the logs of web container
List running the containers
Using Docker Command
docker ps
Using Docker Management Command
docker container ls
List all the containers
Using Docker Command
docker ps -a
Using Docker Management Command
docker container ls --all
Intreact with Running Container
Syntax
docker exec -it <Container id/name> bash
docker exec -it c1 bash
In above example, we are interacting with container c1 (means we are inside container c1, exit command is used to exit from container
Stop a Container
docker stop c1
In above example container c1 will be in Exited mode
Start a Container
docker start c1
In above example container c1 will be started.
Restart a Container
docker restart c1
In above example container c1 will be restarted(started container will be stopped and started and Stopped container will be Started).
Pause a Container
docker pause c1
In above example container c1 will be paused.
UnPause a Container
docker pause c1
In above example container c1 will be unpaused.
kill a Container
docker kill c1
In above example container c1 will be stopped forcefully-ExitCode 137.
remove a Stopped Container
docker rm c1
In above example container c1 will be deleted.
remove a Container forcefully
docker rm -f c1
In above example container c1 will be removed forcefully.
remove all the containers
docker rm -f $(docker ps -a -q)
Port forwarding
Run the following command to do the port forwarding with Host Machine
docker container run -it --name webserver -p 80:80 -d ubuntu
To run the application on my container and access it through web browser
docker exec -it webserver bash # Go inside the container
Run the following commands in the container
apt update # inside the container it will update the apt repo
apt install apache2 -y # it will install the apache in the container
service apache2 start # it will start apache service in container
goto your browser and use public ip address and you will be able to see Apache defualt page
exit # to exit from the container
on your local machine create a file called test.html and write some html code
Copy test.html file to webserver
docker cp test.html webserver:/var/www/html/ # copy the test.html file to the container
got to browser and PublicIP/test.html, you will be able to see the test.html output on the browser
Assignment
1. Create a container called webserver with ubuntu docker image.
var/www/html
Delete-> docker container run -it --name webserver -p 80:80 ubuntu
2. Install apache server in the container(webserver)
-> apt update
-> apt install apache2 -y
3. Start apache service in the container
-> service apache2 start
4. Access apache default page on the web browser
On web browser, enter: localhost:80
5. Create a new webpage myapp.html on the host machine and copy it to /var/www/html folder in webserver container.
-> exit
-> echo "<'h1>This is test code for the html page of apache" >> myapp.html
-> docker cp myapp.html webserver
6. Access myapp.html page on the browser
-> docker restart webserver
-> docker exec -it webserver bash
-> service apache2 start
On web browser, go to: localhost/myapp.html
7. Check how much memory and cpu is consumed by web server containers.
-> exit
-> docker stats webserver
CONTAINER ID NAME CPU % MEM USAGE / LIMIT MEM %
65099388a4e0 webserver 0.01% 6.836MiB / 1.946GiB 0.34%
8. Stop the container and verify that you are not able to access apache website on browser.
-> docker stop webserver
On web browser, refresh - “This site can’t be reached”
9. Start container and now you should be able to access the apache website.
-> docker start webserver
-> docker exec -it webserver bash
-> service apache2 start
On web browser, refresh - accessible
10. Remove webserver container
-> exit
-> docker kill webserver
-> docker rm webserver
1. docker run -it --name webserver ubuntu
var/www/html
Delete2. apt update
apt install apache2 -y
3. service apache2 start
4. localhost
5. On host machine
echo "This is my webapp" >> myapp.html
docker cp my app.html webserver
6. localhost/myapp.html
7. docker stats webserver
8. docker stop webserver
localhost/myapp.html
9. docker start webserver
localhost/myapp.html
10. docker rm webserver
9. docker start webserver
Deleteservice apache2 start
localhost/myapp.html
10. docker stop webserver
docker rm webserver
1. docker container run --name webserver -p 80:80 -dit ubuntu
var/www/html/
Delete2. docker exec -it webserver bash
2.2 apt update
2.3 apt install apache2 -y
3. service apache2 start
4. go to browser, type: localhost:80
5. exit container: exit
5.2 echo " h1 this is a new webpage from myapp.html /h1" >> myapp.html
5.3 docker cp myapp.html webserver
6. go to browser, type: localhost/myapp.html
7. docker stats webserver
8. docker stop webserver
8.2 go to browser, type: localhost (cannot access)
9. docker restart webserver
9.2 docker exec -it webserver bash
9.3 service apache2 start
10. exit container: exit
10.2 docker rm -f webserver
Great work
Deletepong
var/www/html/ #copy into webserver
/localhost/myapp.html # will show the content of script
Deletedocker ps -a
215 docker rm d4cad4fbee34
216 docker rm 8d2c25f9b644
217 docker stop 8d2c25f9b644
218 docker rm 8d2c25f9b644 # stop and remove all unnecessary containers
219 docker container run -it --name webserver -p 80:80 -d ubuntu # new container webserver
220 docker ps -a
221 docker exec -it webserver bash
222 vi myapp.html
223 docker cp myapp.html webserver
Go to http
docker stats webserver # check cpu allocation
226 docker stop webserver
227 docker start webserver
228 docker exec -it webserver bash #enter container webserver
229 docker stop webserver #webpage should not be accessible
230 docker rm webserver
ken webserver
Delete0% cpu, 46mb ram
docker stats webserver
Deletedocker stop webserver
docker restart webserver
docker exec -it webserver bash
service apache2 start
docker rm -f webserver
1. Create a container called webserver with ubuntu docker image.
var/www/html/
Deletedocker container run -it --name webserver -p 80:80 -d ubuntu
2. Install apache server in the container(webserver)
docker exec -it webserver bash
apt update
apt install apache2 -y
3. Start apache service in the container
service apache2 start
4. Access apache default page on the web browser
check localhost on the web browser
5. Create a new webpage myapp.html on the host machine and copy it to /var/www/html folder in webserver container.
echo " This is a html page i create" >> myapp.html
docker cp myapp.html webserver
6. Access myapp.html page on the browser
localhost/myapp.html
7. Check how much memory and cpu is consumed by web server containers.
docker stat webserver
docker container inspect webserver | grep Cpu
8. Stop the container and verify that you are not able to access apache website on browser.
docker stop webserver
9. Start container and now you should be able to access the apache website.
start apache2 start
go to webserver > service apache2 start
10. Remove webserver container
docker stop webserver
docker rm webserver
Great work
DeleteMikraj
var/www/html/
home/vagrant# docker stats webserver
DeleteCreate a container called webserver with ubuntu docker image.
docker container run -it --name webserver -p 80:80 -d ubuntu
Install apache server in the container(webserver)
docker exec -it webserver bash
Start apache service in the container
service apache2 start
Access apache default page on the web browser
Go to browser and Key in 'localhost'.
Create a new webpage myapp.html on the host machine and copy it to /var/www/html folder in webserver container.
Exit from container
Touch myapp.html
echo "This is super cool html page for apache " >> myapp.html
docker cp myapp.html webserver
Access myapp.html page on the browser
go to browser localhost/myapp.html >> can see This is super cool html page for apache
Check how much memory and cpu is consumed by web server containers.
Docker stats webserver
root@node1
CONTAINER ID NAME CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS
a20fcaa507a8 webserver 0.34% 63.03MiB / 1.946GiB 3.16% 46.1MB / 857kB 238kB / 206MB 56
Stop the container and verify that you are not able to access apache website on browser.
docker stop webserver
Start container and now you should be able to access the apache website.
docker exec -it webserver bash
service apache2 start
docker start webserver
for 10: Remove webserver container
Deletedocker stop webserver
docker rm webserver
Good work
Delete
var/www/html/
Deletedocker container ps -a
docker rm -f $(docker ps -aq)
docker container ps -a
docker container run -it --name mywebserver -p 80:80 -d ubuntu
docker exec -it mywebserver bash
apt update
apt install apache2
service apache2 start
exit
touch myapp.html
cat "this is a website for myapp" >> myapp.html
docker cp myapp.html mywebserver
docker stats mywebserver
docker inspect mywebserver
docker stop myweserver
docker start mywebserver
#check in browser localhost/myapp.html
docker rm -f mywebserver