Followers

Docker Containers

Containers

  1. Applications(like Microservices,WebApp,DbApp etc) are deployed on containers
  2. 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.
2. Install apache server in the container(webserver)
3. Start apache service in the container
4. Access apache default page 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.
6. Access myapp.html page on the browser
7. Check how much memory and cpu is consumed by web server containers.
8. Stop the container and verify that you are not able to access apache website on browser.
9. Start container and now you should be able to access the apache website.
10. Remove  webserver container

COMMENTS

BLOGGER: 14
  1. 1. Create a container called webserver with ubuntu docker image.
    -> 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 webservervar/www/html

    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

    Reply Delete
  2. 1. docker run -it --name webserver ubuntu
    2. 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 webservervar/www/html
    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

    Reply Delete
    Replies
    1. 9. docker start webserver
      service apache2 start
      localhost/myapp.html
      10. docker stop webserver
      docker rm webserver

      Reply Delete
  3. 1. docker container run --name webserver -p 80:80 -dit ubuntu

    2. 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 webservervar/www/html/

    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

    Reply Delete
  4. pong

    docker 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 webservervar/www/html/ #copy into webserver

    Go to http/localhost/myapp.html # will show the content of script

    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

    Reply Delete
  5. Replies
    1. docker stats webserver

      docker stop webserver

      docker restart webserver

      docker exec -it webserver bash

      service apache2 start

      docker rm -f webserver

      Reply Delete
  6. 1. Create a container called webserver with ubuntu docker image.

    docker 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 webservervar/www/html/

    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

    Reply Delete
  7. Mikraj

    Create 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 webservervar/www/html/

    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@node1home/vagrant# docker stats webserver
    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

    Reply Delete

  8. docker 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 mywebservervar/www/html/
    docker stats mywebserver
    docker inspect mywebserver
    docker stop myweserver
    docker start mywebserver
    #check in browser localhost/myapp.html
    docker rm -f mywebserver

    Reply Delete

Sneeit.Com
Name

Ansible,6,AWS,1,Azure DevOps,1,Containerization with docker,2,DevOps,2,Docker file with buildkit,1,Docker file with buildx,1,Docker Image Scan,1,Docker Quiz,1,Docker Swarm,1,DockerCompose,1,ELK,2,git,2,git quiz,1,Git Worksheet,1,headless service DNS service record,1,ITIL,1,ITSM,1,Jira,3,Kubernetes,1,Kubernetes Quiz,5,SAST DAST Security Testing,1,SDLC Quiz,5,SonarQube,3,Splunk,2,vagrant kubernetes,1,Windows,1,YAML Basics,1,
ltr
static_page
DevOpsWorld: Docker Containers
Docker Containers
DevOpsWorld
https://www.devopsworld.co.in/p/docker-containers.html
https://www.devopsworld.co.in/
https://www.devopsworld.co.in/
https://www.devopsworld.co.in/p/docker-containers.html
true
5997357714110665304
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content