Followers

Docker - commit (Custom Images)

 

docker commit

Description

Create a new image from a container’s changes

Syntax

docker commit <<container id>> <<new image name>>


Example ( To create an image from nginx container)

docker container run -it --name nginxc -d nginx

docker commit nginxc webserverimg

Verify the Image is in the List

docker images


Assignment

Note: service apache2 start  to start the apache service in the container

1. Create a container with an ubuntu image

2. update the repository (apt update -y) in the container

3. install apache2 in a container ( apt install apache2 -y)

4. Create a directory config under /config in the container

5. Add web.config file under /config folder

6. copy an html file from your host machine to container /var/www/html

7. Verify your container is able to browse your html file (curl localhost) ( To install the curl  apt install curl)

8. Create a production image (prod/webapp)

9. remove all the containers ( docker rm -f $(docker ps -a -q)

10 create a new container with prod/webapp with 80 container port forwarding and verify you are able to access the website and in the container /config directory exist with web.config file



COMMENTS

BLOGGER: 9
  1. 1. docker container run -it --name q1 -p 80:80 -d ubuntu
    2. docker exec -it q1 bash
    apt update
    3. apt install apache2 -y
    4. mkdir /config
    5. cd config
    touch web.config
    6. docker cp test.html q1var/www/html/
    7. docker exec -it q1 bash
    apt install curl
    service apache2 start
    curl localhost/test.html
    8. docker commit q1 webapp
    9. docker rm -f $(docker ps -a -q)
    10. docker container run -it --name q10 -p 80:80 -d webapp
    docker exec -it q10 bash
    service apache2 start

    Reply Delete
  2. docker container run -it --name testserver -p 80:80 -d ubuntu
    docker exec -it testserver bash
    apt update
    apt install apache2 -y
    service apache2 start
    ls
    mkdir config
    cd config
    touch web.config

    docker cp app.html mywebservervar/www/html/
    docker exec -it testserver bash
    apt install curl
    curl localhost/app.html
    docker commit testserver testserverimg
    docker rm -f $(docker ps -a -q)
    docker images
    docker container run -it --name testservernew -p 80:80 -d testserverimg
    docker exec -it testservernew bash
    service apache2 start

    Reply Delete
  3. 1. Create a container with an ubuntu image
    -> docker container run -dit --name con2 -p 80:80 ubuntu

    2. update the repository (apt update -y) in the container
    -> docker exec -it con2 bash
    -> apt update -y

    3. install apache2 in a container ( apt install apache2 -y)
    -> apt install apache2 -y

    4. Create a directory config under /config in the container
    -> mkdir config

    5. Add web.config file under /config folder
    -> touch /config/web.config

    6. copy an html file from your host machine to container /var/www/html
    -> exit
    -> echo "abc" >> TEST.html
    -> docker cp TEST.html con2var/www/html
    -> docker exec -it con2 bash


    7. Verify your container is able to browse your html file (curl localhost) ( To install the curl  apt install curl)
    -> apt install curl
    -> curl localhost/TEST.html

    8. Create a production image (prod/webapp)
    -> docker commit con2 webserverimg
    -> docker images

    9. remove all the containers ( docker rm -f $(docker ps -a -q)
    -> docker rm -f $(docker ps -a -q)

    10 create a new container with prod/webapp with 80 container port forwarding and verify you are able to access the website and in the container /config directory exist with web.config file
    -> docker container run -dit --name con2 -p 80:80 webserverimg
    -> docker exec -it con2 bash
    -> service apache2 start
    On web browser, go to: localhost/TEST.html

    Reply Delete
  4. 1. Create a container with an ubuntu image

    docker container run -it --name webserver -p 80:80 -d ubuntu


    2. update the repository (apt update -y) in the container

    docker exec -it webserver bash
    apt update -y

    3. install apache2 in a container ( apt install apache2 -y)

    inside webserver container > apt install apache2 -y

    4. Create a directory config under /config in the container

    mkdir config

    5. Add web.config file under /config folder

    cd config
    touch web.config

    6. copy an html file from your host machine to container /var/www/html

    exit
    docker cp test.html webservervar/www/html


    7. Verify your container is able to browse your html file (curl localhost) ( To install the curl apt install curl)

    docker exec -it webserver bash
    apt install curl
    service apache2 start
    curl localhost/test.html

    8. Create a production image (prod/webapp)

    docker commit webserver webapp

    9. remove all the containers ( docker rm -f $(docker ps -a -q)

    docker rm -f $(docker ps -a -q)


    10 create a new container with prod/webapp with 80 container port forwarding and verify you are able to access the website and in the container /config directory exist with web.config file

    docker container run -it --name newcontainer -p 80:80 -d webapp
    docker exec -it newcontainer bash
    service apache2 start
    curl localhost/test.html

    Reply Delete
  5. pong

    1. Create a container with an ubuntu image
    docker rm -f 5966638c6b31
    rm img1.tar webimg.tar
    docker container run -it --webserver -p 80:80 -d ubuntu

    2. update the repository in the container
    docker exec -it web bash
    apt update -y

    3. install apache2 in a container
    apt install apache2 -y

    4. Create a directory config under /config in the container
    mkdir /config


    5. Add web.config file under /config folder
    cd /config
    touch web.config

    6. copy an html file from your host machine to container /var/www/html
    docker cp test.html webservervar/www/html/

    7. Verify your container is able to browse your html file (curl localhost) ( To install the curl apt install curl)
    apt install curl
    service apache2 start
    curl localhost/test.html

    8. Create a production image (prod/webapp)
    docker commit webapp


    9. remove all the containers
    docker rm -f $(docker ps -a -q)


    10 create a new container with prod/webapp with 80 container port forwarding and verify you are able to access the website and in the container /config directory exist with web.config file

    docker container run -it --name web -p 80:80 -d webapp
    docker exec -it web bash
    service apache2 start
    docker images

    Reply Delete
  6. 1. docker container run --name assignmentc -dit -p 80:80 ubuntu

    2. docker exec -it assignmentc bash
    2.2 apt update

    3 apt install apache2 -y #6, 71
    3.2 service apache2 start (curl localhost to check)

    4. mkdir config

    5. touch /config/web.config

    6. exit
    6.2 docker cp test.html assignmentcvar/www/html/

    7. apt install curl
    7.2curl localhost/test.html (can access)

    8. docker commit assignmentc assignmentimg
    8.2 docker save assignmentimg > assignmentimg.tar
    8.3 ls

    9. docker rm -f $(docker ps -a -q)

    10. curl localhost/test.html (cannot access)
    10.2 docker load < assignmentimg.tar
    10.3 docker container run --name answer -dit -p 80:80 assignmentimg.tar
    10.4 docker exec -it answer bash
    10.5 ls /config (yes web.config file in /config)
    10.6 service apache2 start
    10.7 exit
    10.8 curl localhost/test.html

    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 - commit (Custom Images)
Docker - commit (Custom Images)
DevOpsWorld
https://www.devopsworld.co.in/p/docker-custom-images.html
https://www.devopsworld.co.in/
https://www.devopsworld.co.in/
https://www.devopsworld.co.in/p/docker-custom-images.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