Skip to content
Discussion options

You must be logged in to vote

Hi, I believe you don't need to configure anything extra in the container, as WildFly listens on both IPv6 and IPv4 addresses.

Here's a quick test I ran using Docker to confirm that port 8080 is published on both IPv6 and IPv4:

docker run --rm -it -p 8080:8080 keyfactor/ejbca-ce

Once the container has spun up, you can verify IPv6 connectivity by making a request to the IPv6 loopback address:

curl -v http://[::1]:8080/ejbca/publicweb/healthcheck/ejbcahealth
# *   Trying [::1]:8080...
# * Connected to ::1 (::1) port 8080
# ...
# ALLOK

And IPv4 connectivity using 127.0.0.1:

curl -v http://127.0.0.1:8080/ejbca/publicweb/healthcheck/ejbcahealth
# *   Trying 127.0.0.1:8080...
# * Connected to 1…

Replies: 1 comment 6 replies

Comment options

You must be logged in to vote
6 replies
@Krisscut
Comment options

@Krisscut
Comment options

@primetomas
Comment options

@dobicinaitis
Comment options

Answer selected by Krisscut
@Krisscut
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants