You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the file standalone.conf (found in jboss-eap-7.1/bin/) the last line is always overwriting whatever else is set in the standalone.conf. The last line is JAVA_OPTS="-Djava.net.preferIPv4Stack=true -Djboss.bind.address=0.0.0.0 -Djboss.bind.address.management=0.0.0.0". In my opinion it should first include previous set JAVA_OPTS settings. Like this: JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true -Djboss.bind.address=0.0.0.0 -Djboss.bind.address.management=0.0.0.0"
This behaviour is found in daggerok/jboss-eap-7.1:7.1.61-centos and daggerok/jboss-eap-7.1:7.1.61-alpine
The place where this is added in the dockerfile is here
The text was updated successfully, but these errors were encountered:
In the file standalone.conf (found in jboss-eap-7.1/bin/) the last line is always overwriting whatever else is set in the standalone.conf. The last line is
JAVA_OPTS="-Djava.net.preferIPv4Stack=true -Djboss.bind.address=0.0.0.0 -Djboss.bind.address.management=0.0.0.0"
. In my opinion it should first include previous set JAVA_OPTS settings. Like this:JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true -Djboss.bind.address=0.0.0.0 -Djboss.bind.address.management=0.0.0.0"
This behaviour is found in
daggerok/jboss-eap-7.1:7.1.61-centos
anddaggerok/jboss-eap-7.1:7.1.61-alpine
The place where this is added in the dockerfile is here
The text was updated successfully, but these errors were encountered: