Skip to content
Snippets Groups Projects
Commit 1f0e4736 authored by Sameer Al-Sakran's avatar Sameer Al-Sakran Committed by GitHub
Browse files

Merge pull request #5552 from joshuashort/master

MB_JETTY_HOST default value for Docker
parents 11815181 bd2f1eac
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# if nobody manually set a host to list on then go with $HOSTNAME
# if nobody manually set a host to listen on then go with all available interfaces and host names
if [ -z "$MB_JETTY_HOST" ]; then
export MB_JETTY_HOST=$HOSTNAME
export MB_JETTY_HOST=0.0.0.0
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment