Configure Network Interface Binding for Docker
Last modified: 08 March 2021By default, the Jetty servlet engine and HTTP server used in Hub bind on the 0.0.0.0
network interface. For security reasons, this action may be restricted in some environments.
If you run Hub service inside a docker container, there is no need to change the listen-address
. However, you can still do it, using configure command to change the listen-address
property.
To customize the network interface binding for a Docker image:
Stop the Hub docker container:
docker exec <containerId> stop
Run the
configure
command:docker run --rm -it -v <path to conf directory>:/opt/hub/conf \ -v <path to logs directory>:/opt/hub/logs \ jetbrains/hub:<version> \ configure --listen-address=<new network interface address>
Start the Hub docker container:
docker start <containerId>
Thanks for your feedback!
Was this page helpful?