How to manually build a new image with docker

How to manually build a new image with docker

This article introduces the method of manually building a new image with Docker, and shares it with you. The details are as follows:

View existing local images:

[root@docker ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
nginx latest c59f17fe53b0 4 days ago 108MB
ubuntu latest 747cb2d60bbe 3 weeks ago 122MB
centos latest 196e0ce0c9fb 6 weeks ago 197MB

Now use the base image centos to manually build a web service based on it. Here we use nginx

Start a container and enter it:

[root@docker ~]# docker run -it --name=web centos /bin/bash
[root@bab3b6991467 /]#

Then install the nginx service in the container:

[root@bab3b6991467 /]# cd /usr/local/src/
[root@bab3b6991467 src]# yum install wget vim

Here we use compilation to install nginx, so download the nginx source package and install the compilation environment:

[root@bab3b6991467 src]# wget http://nginx.org/download/nginx-1.12.2.tar.gz

Compilation environment:

[root@bab3b6991467 src]# yum install gcc gcc-c++ glibc make autoconf openssl openssl-devel

Install some dependency packages of nginx:

[root@bab3b6991467 src]# yum install libxslt-devel -y gd gd-devel GeoIP GeoIP-devel pcre pcre-devel

Then execute the installation:

[root@bab3b6991467 src]# ll
total 960
-rw-r--r--. 1 root root 981687 Oct 17 13:20 nginx-1.12.2.tar.gz
[root@bab3b6991467 src]# tar xf nginx-1.12.2.tar.gz 
[root@bab3b6991467 src]# cd nginx-1.12.2
[root@bab3b6991467 nginx-1.12.2]# ./configure --user=nginx --group=nginx --prefix=/usr/local/nginx --with-file-aio --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module --with-http_image_filter_module --with-http_geoip_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_auth_request_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_stub_status_module

Create the required users:

useradd -M -s /sbin/nologin nginx

Continue compiling:

make && make install
chown -R nginx:nginx /usr/local/nginx/

Here we need to introduce a parameter of the nginx command:

[root@bab3b6991467 ~]# /usr/local/nginx/sbin/nginx -h 
  -g directives : set global directives out of configuration file

-g: Set instructions for the nginx configuration file

Now exit the container and return to the host machine

[root@bab3b6991467 ~]# exit
exit

Check the status of the container at this time:

[root@docker ~]# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
bab3b6991467 centos "/bin/bash" 37 minutes ago Exited (0) 21 seconds ago web

Use docker diff to see what changes have been made to the container. Since there are too many outputs, they are not shown here.

Use docker commit to add a layer to the web container into a new image:

[root@docker ~]# docker commit --help
  Usage: docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]
  Create a new image from a container's changes

  -m, --message string Commit message
  -a, --author string Author (eg, "John Hannibal Smith <[email protected]>")

Now start committing:

[root@docker ~]# docker commit -m "compile nginx on centos" web wadeson/centos_nginx:v1
sha256:210a202d37b8d2c31155c29adf0c7c0b49cfab7ff38234109919de7f4e76d1de

View the local image:

[root@docker ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
wadeson/centos_nginx v1 210a202d37b8 33 seconds ago 464MB
nginx latest c59f17fe53b0 4 days ago 108MB
ubuntu latest 747cb2d60bbe 3 weeks ago 122MB
centos latest 196e0ce0c9fb 6 weeks ago 197MB 

You can see the new image just committed by docker. Now start a container from this image to provide nginx service:

[root@docker ~]# docker run -d -p80:80 wadeson/centos_nginx:v1 /usr/local/nginx/sbin/nginx -g "daemon off;"
c12669357e2b09a05a396ac480a04dd1956303b784f894b615d4edb889a737ab

Then check the container:

[root@docker ~]# docker ps -l
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
c12669357e2b wadeson/centos_nginx:v1 "/usr/local/nginx/..." 41 seconds ago Up 40 seconds 0.0.0.0:80->80/tcp thirsty_murdock

You can see that the nginx service has been started, so visit it:

So the entire manual build was successful

Here are some explanations for the above commands:

docker run -d -p80:80 wadeson/centos_nginx:v1 /usr/local/nginx/sbin/nginx -g "daemon off;"

The commands run later are all aimed at the container. Since no environment variables are set, the full path is used. The nginx -g parameter means that you can add instructions to the nginx configuration file from the outside. Daemon off means that the nginx service does not run in the backend but in the foreground (the service in the container must run in the foreground)

Use docker top to view the running process of the container:

[root@docker ~]# docker top c12669357e2b
UID PID PPID C STIME TTY TIME CMD
root 35468 35451 0 02:55 ? 00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -g daemon off;
1000 35489 35468 0 02:55 ? 00:00:00 nginx: worker process

Use docker exec to enter the container:

[root@docker ~]# docker exec -it c12669357e2b /bin/bash
[root@c12669357e2b /]# ps -ef
UID PID PPID C STIME TTY TIME CMD
root 1 0 0 06:55 ? 00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -g daemon off;
nginx 5 1 0 06:55 ? 00:00:00 nginx: worker process
root 6 0 1 07:01 pts/0 00:00:00 /bin/bash
root 20 6 0 07:01 pts/0 00:00:00 ps -ef

Using ctrl+p+q puts the container in the background instead of exiting immediately.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • A detailed introduction to the Dockerfile image building file and related commands in Docker
  • Jenkins builds Docker image example
  • How to build a docker base image from scratch
  • How to build dubbo-admin image in multiple steps using Docker
  • Implementation of Docker multi-stage image building
  • How to use Dockerfile to build images
  • Analysis of two methods of building Docker images
  • How to build a new image based on an existing image in Docker
  • How to use Dockerfile to build images in Docker

<<:  Example of how to generate random numbers and concatenate strings in MySQL

>>:  Realizing the effect of carousel based on jQuery

Recommend

How to use cc.follow for camera tracking in CocosCreator

Cocos Creator version: 2.3.4 Demo download: https...

Add unlimited fonts to your website with Google Web Fonts

For a long time, website development was hampered...

Problems and solutions encountered when connecting node to mysql database

I installed a new version of MySQL (8.0.21) today...

A brief analysis of JS original value and reference value issues

Primitive values ​​-> primitive types Number S...

MySQL 5.7.15 version installation and configuration method graphic tutorial

This article shares with you a detailed tutorial ...

Solution for front-end browser font size less than 12px

Preface When I was working on a project recently,...

10 reasons why Linux is becoming more and more popular

Linux has been loved by more and more users. Why ...

Recommended tips for web front-end engineers

Let's first talk about the value of web front...

Script example for starting and stopping spring boot projects in Linux

There are three ways to start a springboot projec...

MySQL 5.6.24 (binary) automatic installation script under Linux

This article shares the mysql5.6.24 automatic ins...

Detailed explanation of the basic usage of the img image tag in HTML/XHTML

The image tag is used to display an image in a we...