Monday, June 5, 2023
Home CONTAINERIZATION Can docker container access the host network?

Can docker container access the host network?

Yes, A docker container can access the host network if it is started with the correct parameters and Docker host policies/controls allowing to do so. When a container is starting you can set the networking option with –network host option likedocker container run --rm -d --network host --name my_nginx nginx command.

In this way, the container network stack will be the same as the docker host network stack. When a process tries to listen to a port in the container namespace it will actually try to listen on the Docker host network interface.

Previous articleHello world!
Next articleWhen to use volume in Docker?
Burak Cansizogluhttp://devopsmania.com/
Burak is working as a freelance Cloud/DevOps consultant. He performed different roles during his professional career track. He has more than 12 years of experience in the finance, telecommunication and government sectors. He likes to learn new technologies and wants to share his knowledge, experiences with the community. He likes all lean, agile initiatives. And he believes that the DevOps mindset and DevOps transformation will bring more agility to the Enterprises as well as employees.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Most Popular

How to query EC2 tags from within the instance?

Intro To help you manage your instances, images, and other Amazon EC2 resources, you can assign your own...

How to install Python3 on Amazon Linux 2?

Intro Python is an object-oriented programming language that is widely used. In addition to that, it's free and...

How to connect an AWS EC2 instance with FileZilla and do SFTP?

Intro EC2 is one of the essential services of Amazon Web Services (AWS), providing highly available and scalable...

How to install AWS CLI v2 on Linux?

Intro Whether you’ve been using AWS for some time or you are a novice, you may have noticed...

Recent Comments