This guide uses Docker to run JBoss EAP.
For Docker installation, see Docker.
Create a directory to store your configuration and compose files.
mkdir -p /opt/jboss
cd /opt/jboss
Define a container for JBoss EAP.
services:
jboss:
image: ${JBOSS_EAP_IMAGE}
ports:
- "8080:8080"
- "9990:9990"
environment:
- LICENSE=accept
Start the container in the background.
docker compose up -d
JBOSS_EAP_IMAGE=registry.redhat.io/jboss-eap-8/eap8-openjdk17-openshift-rhel8Any questions?
Feel free to contact us. Find all contact information on our contact page.