This guide uses Docker to run IBM WebSphere.
For Docker installation, see Docker.
Create a directory to store your configuration and compose files.
mkdir -p /opt/ibm-websphere
cd /opt/ibm-websphere
Define a container for IBM WebSphere Liberty.
Set an image tag from IBM Container Registry documentation first.
services:
websphere-liberty:
image: ${LIBERTY_IMAGE}
ports:
- "8080:8080"
- "9443:9443"
environment:
- LICENSE=accept
Start the container in the background.
docker compose up -d
LIBERTY_IMAGE=icr.io/appcafe/websphere-liberty:<supported-tag>Any questions?
Feel free to contact us. Find all contact information on our contact page.