WSO2 API Manager is an open source approach that addresses full API lifecycle management, monetization, and policy enforcement. It allows extensibility and customization, and ensures freedom from lock-in.
As part of the larger WSO2 Integration Agile Platform, it is a central component used to deploy and manage API-driven ecosystems. Its hybrid integration capabilities further simplify projects that span traditional as well as microservice environments. And unlike other API and lifecycle management products, it is fully open-source allowing for extensibility and customization.
WSO2 provides Docker images on DockerHub for multiple products. These images contain General Availability (GA) versions without WSO2 Updates.
For production deployments, it is recommended to use updated images from the WSO2 Private Docker Registry, which include WSO2 Updates.
WSO2 API Manager Docker images are built for running WSO2 API Manager in containerized environments.
They support multiple base OS variants and are designed for development, testing, and deployment of API-driven architectures.
4.7.0
4.7.0,
4.7.0-alpine,
4.7.0-rocky
4.6.0
4.6.0,
4.6.0-alpine,
4.6.0-rocky
4.5.0
4.5.0,
4.5.0-alpine,
4.5.0-rocky
4.4.0
4.4.0,
4.4.0-alpine,
4.4.0-rocky
4.3.0
4.3.0,
4.3.0-alpine,
4.3.0-rocky
3.2.0
3.2.0,
3.2.0-alpine,
3.2.0-centos
docker run -it -p 8243:8243 -p 9443:9443 \
--name api-manager wso2/wso2am:4.7.0
By default, ports 8243 and 9443 are exposed. You can map additional ports as needed.
Use the Docker host IP:
View logs:
docker logs api-manager
Access container shell:
docker exec -it api-manager bash
Run the container with remote debugging enabled (port 5005):
docker run -it -p 8243:8243 -p 9443:9443 -p 5005:5005 \
--name api-manager-debug \
wso2/wso2am:4.7.0 -debug *:5005
WSO2 API Manager exposes JMX by default for monitoring via tools like JConsole.
docker run -it -p 8243:8243 -p 9443:9443 \
-p 9999:9999 -p 11111:11111 \
--name jmx-apim wso2/wso2am:4.7.0
Check container logs:
docker logs jmx-apim
Look for:
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
Use the above service URL to connect from your JMX client.
For detailed steps, refer to: https://apim.docs.wso2.com/en/4.7.0/monitoring/observability/metrics/jmx-based-monitoring/
Note: Passing startup arguments is not supported in Docker image tag 2.5.0.
You can override API Manager configurations by mounting files from the host.
deployment.tomlCopy the config file from the product:
{DISTRIBUTION_HOME}/repository/conf/deployment.toml
Update required values (e.g., set port offset):
[server]
offset = 1
Grant read permission:
chmod o+r {SOURCE_CONFIGS}/deployment.toml
Run the container with the mounted config:
docker run -p 9444:9444 \
--volume {SOURCE_CONFIGS}/deployment.toml:{TARGET_CONFIGS}/deployment.toml \
wso2/wso2am:4.7.0
{TARGET_CONFIGS} refers to:
/home/wso2carbon/wso2am-4.7.0/repository/conf
WSO2 API Manager Docker images are available with different base operating systems.
| Image Tag | Base OS | JDK |
|---|---|---|
wso2am:4.7.0 | Ubuntu 24.04 LTS | Temurin OpenJDK 25 |
wso2am:4.7.0-alpine | Alpine 3.23 | Temurin OpenJDK 25 |
wso2am:4.7.0-rocky | Rocky Linux 9 | Temurin OpenJDK 25 |
Each image includes a pre-installed WSO2 API Manager distribution on top of the respective base OS.
Where to get help: Docker Community Forums, Docker Community Slack, Stack Overflow or mail to WSO2 Developer mailing list
Where to file issues: Product specific issues at WSO2 API Manager product repository and Docker resource usage issues at WSO2 API Manager product Docker resource repository
Maintained by: WSO2 LLC.
Supported Docker versions: Docker v17.09.0 or above
View license information for the software contained in this image.
As with all Docker images, these are likely to contain other software which may be under other licenses (such as Bash, etc. from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
Content type
Image
Digest
sha256:4de3aabbb…
Size
713.7 MB
Last updated
5 months ago
docker pull wso2/wso2am