2

I have installed Docker for Windows on which I have running Nexus Repository Manager container. Now I want to make my nexus container be accessible from other pc's located in internal network.

How to do it?

Wicia
  • 575
  • 3
  • 9
  • 28

1 Answers1

2

You have to map the port to the container. Example for port 443:

docker run -d -p 443:443 $imagename$

You also have to make sure that your windows firewall is not blocking that port. Maybe you have to create a new rule.

BR Hannes

Hannes
  • 491
  • 5
  • 21
  • Ok. So then only thing I will have to do is to check my IP and share it with someone who wants to perform operations on nexus container? :) – Wicia Aug 24 '18 at 11:37
  • 1
    I think yes. When the computers can reach each other. Just test it. – Hannes Aug 24 '18 at 11:41