Docker uses CMD or ENTRYPOINT commands to start multiple services at the same time

Docker uses CMD or ENTRYPOINT commands to start multiple services at the same time

Requirement: Celery is introduced in Django. When starting the Django project, how to start the Celery service as well?

Start using the ENTRYPOINT command

1. Write the Dockerfile

 FROM centos:7
 RUN localedef -c -f UTF-8 -i zh_CN zh_CN.utf8
 ENV LC_ALL zh_CN.UTF-8
 COPY ./hrms $CODE_DIR/hrms/
 COPY ./run $CODE_DIR/run/
 RUN chmod a+x $CODE_DIR/run/*
 RUN pip3 install -r $CODE_DIR/hrms/requirements.txt
 EXPOSE 8080
 WORKDIR /opt/hrms/hrms/

You don't need to read the above, the key is to look at the following command

 #Start a service with CMD# CMD ["python3.5", "/opt/hrms/hrms/manage.py", "runserver", "0.0.0.0:8080"] 
 
 #When starting multiple services, you can use CMD to execute a script and start multiple services in the script CMD source /opt/hrms/run/entrypoint.sh
 
 #When starting multiple services, you can also use ENTRYPOINT to execute a script and start multiple services in the script ENTRYPOINT ["/opt/hrms/run/entrypoint.sh"]

The difference between CMD and ENTRYPOINT is that the CMD command can be overwritten by the command command in the docker-compose.yml file. Once the command is specified, the CMD command will no longer be executed, while ENTRYPOINT can never be overwritten.

So here we can do this:

Use CMD to start a script, and then start multiple services in the script, such as Django, Celery, etc. When you only want to do database migration, you can execute python manage.py migrate in the command in the docker-compose.yml file, so that the CMD command will not be executed and only the database migration will be executed.

2. entrypoint.sh script file

#!/bin/bash
 #Start Django
 python3.5 /opt/hrms/hrms/manage.py runserver 0.0.0.0:8080 & 
 
 #Start the worker
 celery worker -A celery_tasks.main -l info -f /opt/hrms/logs/celery.log & #Note that the log location must be written in an absolute path#Start beat
 celery beat -A celery_tasks.main -l info

Note: The first two services must be run in the background, that is, add an & after them, and the last service must be run in the foreground.

Otherwise, if all are run in the foreground, only the first service will start; if all are run in the background, the container will exit when the last service is executed.

Additional knowledge: Use of Dockerfile CMD

Three formats of CMD:

CMD ["executable","param1","param2"] (exec form, preferred format)

CMD ["param1","param2"] (as the default parameter of ENTRYPOINT)

CMD command param1 param2 (shell form)

Note:

The exec form above will be parsed into a JSON Array, which means you must use double quotes instead of single quotes.

The exec form does not call the command shell.

For example, in CMD [ "echo", "HOME"], the HOME variable will not be replaced. If you want to use the shell, it should be like this: CMD [ "sh", "-c", "echo $HOME" ]

There should be only one CMD in a Dockerfile. If there are multiple, only the last one will be executed.

Examples of format usage:

CMD [“sh”,”run.sh”]

or

CMD sh run.sh

The above article about how to use CMD or ENTRYPOINT command to start multiple services at the same time in docker is all I want to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of Dockerfile to create a custom Docker image and comparison of CMD and ENTRYPOINT instructions
  • Detailed explanation of CMD and ENTRYPOINT commands in Dockerfile
  • Steps to deploy multiple tomcat services using DockerFile on Docker container
  • Installing the ping tool in a container built by Docker
  • Solve the problem of docker log mounting
  • Solve the problem that changes to the Docker MySQL container database do not take effect
  • The docker container directly runs to obtain the public IP operation through ping
  • Docker file storage path, get container startup command operation

<<:  The principles and defects of MySQL full-text indexing

>>:  Notes on using the blockquote tag

Recommend

How to center your HTML button

How to center your HTML button itself? This is ea...

MYSQL stored procedures, that is, a summary of common logical knowledge points

Mysql stored procedure 1. Create stored procedure...

js uses cookies to remember user page operations

Preface During the development process, we someti...

MySQL permission control detailed explanation

Table of contents mysql permission control Permis...

JavaScript to achieve simple image switching

This article shares the specific code for JavaScr...

Explanation of the usage scenarios of sql and various nosql databases

SQL is the main trunk. Why do I understand it thi...

CSS position fixed left and right double positioning implementation code

CSS Position The position attribute specifies the...

Page Refactoring Skills - Javascript, CSS

About JS, CSS CSS: Stylesheet at the top Avoid CS...

Mac installation mysqlclient process analysis

Try installing via pip in a virtual environment: ...

How to configure the Runner container in Docker

1. Create a runner container mk@mk-pc:~/Desktop$ ...

Linux bridge method steps to bridge two VirtualBox virtual networks

This article originated from my complaints about ...

Detailed explanation of Vue project packaging

Table of contents 1. Related configuration Case 1...

A brief discussion on several ways to pass parameters in react routing

The first parameter passing method is dynamic rou...

HTML+CSS to create heartbeat special effects

Today we are going to create a simple heartbeat e...