Implementation of modifying configuration files in Docker container

Implementation of modifying configuration files in Docker container

1. Enter the container

docker run [option] image name [command passed to the startup container]

Description of common optional parameters:

  • -i means running the container in "interactive mode"
  • -t means that the container will enter its command line after it starts. After adding these two parameters, you can log in to the container after it is created. That is, allocate a pseudo terminal.
  • --name Name the created container
  • -v indicates the directory mapping relationship (the former is the host directory, and the latter is the directory mapped to the host, that is, host directory: directory in the container). Multiple -v can be used to map multiple directories or files. Note: It is best to do directory mapping, make changes on the host machine, and then share it to the container.
  • -d If you add the -d parameter after run, a guarded container will be created and run in the background (in this way, you will not automatically log in to the container after creating it. If you only add the -i -t parameters, you will automatically enter the container after creation).
  • -p means port mapping. The former is the host port and the latter is the mapping port in the container. You can use multiple -p to map multiple ports.
  • -e sets environment variables for the container
  • --network=host means mapping the host's network environment to the container, and the container's network is the same as the host's

2. Find the configuration file

# Display file ls
The results are as follows:
LICENSE.txt README.textile config lib modules
NOTICE.txt bin data logs plugins
 
# Enter the configuration folder cd config
 
# Display file ls
The results are as follows:
elasticsearch.keystore ingest-geoip log4j2.properties roles.yml users_roles
elasticsearch.yml jvm.options role_mapping.yml users
 
# Modify the configuration file vi elasticsearch.yml

When using the docker container, Vi may not be installed. apt-get install vim . If it prompts: Unable to locate package vim, you need to type: apt-get update update. After the update is complete, type the command: apt-get install vim

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:
  • How to set port mapping for running container in Docker
  • How to modify the contents of an existing Docker container
  • How to view files in Docker image
  • Docker file storage path, modify port mapping operation mode

<<:  A brief discussion on how to write beautiful conditional expressions in JS

>>:  In-depth analysis of the Identifier Case Sensitivity problem in MySQL

Recommend

Implementation of fuzzy query like%% in MySQL

1, %: represents any 0 or more characters. It can...

Nginx compiled nginx - add new module

1. View existing modules /usr/local/nginx/sbin/ng...

Nginx+FastDFS to build an image server

Installation Environment Centos Environment Depen...

Analysis of HTTP interface testing process based on postman

I accidentally discovered a great artificial inte...

Detailed tutorial on installing mysql on centos 6.9

1. Confirm whether MySQL has been installed. You ...

Detailed explanation of this pointing problem in JavaScript function

this keyword Which object calls the function, and...

Steps to transfer files and folders between two Linux servers

Today I was dealing with the issue of migrating a...

Implementation of Single Div drawing techniques in CSS

You can often see articles about CSS drawing, suc...

Viewing and analyzing MySQL execution status

When you feel that there is a problem with MySQL ...

Detailed explanation of several solutions for JavaScript interruption requests

Table of contents 1 Promise Interrupt the call ch...

Detailed deployment of docker+gitlab+gitlab-runner

environment Server: centos7 Client: window Deploy...

JS implements simple example code to control video playback speed

introduction I discovered a problem before: somet...

The benefits and examples of placing the site map at the bottom of the web page

In the past, almost every website had a sitemap p...