Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the methods for Docker to modify hosts

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "what are the methods for Docker to modify hosts". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Method 1:

Go directly to the container to modify / etc/hosts

Disadvantages: after restarting the container, the added content will be lost

Method 2:

When making a mirror image, modify it directly.

Restrictions:

Needs to be a root user and needs to install sudo in the container

Increased the mirror size

Method 3:

When running a new container using docker run, add the domain name and IP information to the container's / etc/hosts file with the parameter-add-host. For example:

Docker run-add-host=myhostname:10.180.8.1-name test-it debian

Note:

-- add-host parameter is preferably followed by-- name to avoid initiating error reports.

Method 4:

In the docker-compose.yml file, this is done by configuring the parameter extra_hosts. For example:

Extra_hosts:

-"somehost:162.242.195.82"

-"otherhost:50.31.209.229"

This is the end of the content of "what are the methods for Docker to modify hosts". Thank you for your reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report