This guide uses Docker to run WildFly.
For Docker installation, see Docker.
Create a directory to store your configuration and compose files.
mkdir -p /opt/wildfly
cd /opt/wildfly
Define a container for WildFly.
services:
wildfly:
image: ${WILDFLY_IMAGE}
ports:
- "8080:8080"
- "9990:9990"
Start the container in the background.
docker compose up -d
WILDFLY_IMAGE=quay.io/wildfly/wildfly:<supported-tag>latest.Any questions?
Feel free to contact us. Find all contact information on our contact page.