Docker-compose installation yml file configuration method

Docker-compose installation yml file configuration method

1. Offline installation

https://github.com/docker/compose/releases

Move files

mv docker-compose-linux-x86_64 /usr/local/bin

Modify the file name

mv docker-compose-linux-x86_64 docker-compose

Grant execution permissions to docker-compose. By default, there is no execute permission.

chmod -x docker-compose

Whether the test is successful

docker-compose -v

2. Online installation

run

sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

Install a different version and modify the version number to 1.29.2.

If you encounter curl problems, use pip to install

pip install docker-compose

Without virtualenv

implement

sudo pip install docker-compose

Grant execution permissions to docker-compose. By default, there is no execute permission. In /usr/local/bin

chmod -x docker-compose

Whether the test is successful

docker-compose -v

3. Uninstall

sudo rm /usr/local/bin/docker-compose

Installed using pip

pip uninstall docker-compose

4. Define the yml file

1. Download the nginx image

docker pull nginx

2. Write the docker-compose.yml file. Pay attention to the format of the YML file.

version: '3' #version number services: #docker container nginx: #container name container_name: nginx-1 #customize the container name after startup restart: always #Set to always, indicating that this container should always restart when stopped image: nginx:latest #image name: version number ports: #startup port number - 4433:80
    volumes: #Data volume, mapping files in the container to the server - ./conf.d:/etc/nginx/conf.d
    environment: #Environment configuration TZ: Asia/shanghai

3. Start. Under the yml file

docker-compose up -d

This is the end of this article about docker-compose installation and yml file configuration. For more relevant docker-compose yml file configuration content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Docker compose configuration file writing and command usage examples
  • Using Docker Compose to build and deploy ElasticSearch configuration process
  • Detailed explanation of the process of deploying the distributed configuration center Apollo with one click using docker compose
  • Detailed tutorial on docker-compose deployment and configuration of Jenkins
  • How to install and configure the Docker Compose orchestration tool in Docker.v19
  • Docker-compose steps to configure the spring environment
  • Detailed explanation of software configuration using docker-compose in linux
  • Detailed explanation of Docker Compose configuration file parameters

<<:  Vue codemirror realizes the effect of online code compiler

>>:  MySQL executes commands for external sql script files

Recommend

Summary of frequently used commands for Linux file operations

0. New operation: mkdir abc #Create a new folder ...

How to implement the Vue mouse wheel scrolling switching routing effect

A root routing component (the root routing compon...

CSS code for arranging photos in Moments

First, you can open Moments and observe several l...

JavaScript tips to help you improve your coding skills

Table of contents 1. Filter unique values 2. Shor...

Working principle and implementation method of Vue instruction

Introduction to Vue The current era of big front-...

Summary of 10 must-see JavaScript interview questions (recommended)

1.This points to 1. Who calls whom? example: func...

How to change apt-get source in Ubuntu 18.04

When using apt-get to install, it will be very sl...

How to upgrade CentOS7 to CentOS8 (detailed steps)

This article uses a specific example to introduce...

Solution to leaving gaps between BootStrap grids

Table of contents [See an example]: [The original...

Vue implements carousel animation

This article example shares the specific code of ...

Detailed tutorial on installing Python 3.6.6 from scratch on CentOS 7.5

ps: The environment is as the title Install possi...

How to design a web page? How to create a web page?

When it comes to understanding web design, many p...

The three new indexes added in MySQL 8 are hidden, descending, and functions

Table of contents Hidden, descending, and functio...

Nginx/Httpd reverse proxy tomcat configuration tutorial

In the previous blog, we learned about the usage ...