🦍 maniedzi's blog

wildfly

I am currently working on a project where the infrastructure is based on a Wildfly/JBoss server. I often test different configuration options, so I can't imagine any other solution than containerisation.

Official Wildfly images are available on quay.io. Preparing the environment requires two commands:

docker run -p 8080:8080 -p 9990:9990 -d --name=jboss quay.io/wildfly/wildfly /opt/jboss/wildfly/bin/standalone.sh -b 0.0.0.0 -bmanagement 0.0.0.0
docker exec jboss /opt/jboss/wildfly/bin/add-user.sh admin Admin!23 --silent

I can now login to the console via http://localhost:9090 with the user "admin" and the password "Admin!23".


There is an RSS feed for this blog.

#work