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