Eclipse RAP Demo Applications (Remote Application Platform)
1.7K
The Eclipse RAP project (Remote Application Platform) provides several demo applications. This container contains these demo applications and runs them on top of an included Tomcat 7 server serving them on the exposed port 8080.
The following command starts the RAP Demo Applications in a Docker container and exposes them on port 10000.
docker run -d --name="rap.demo" --publish=10000:8080 -t eclipsesource/eclipse-rap-demo:latest
Note: Some of the demo pages (e.g. the complex data demo page) require access to a lot of demo data. This data is not part of this image, it is hosted in a separate eclipse-rap-demo-data container. In order to use both images together, you need to run both containers with volumes mounted:
docker run -d --name="rap.demo.data" -t eclipsesource/eclipse-rap-demo-data:latest
docker run -d --name="rap.demo" --publish=10000:8080 --volumes-from=rap.demo.data -t eclipsesource/eclipse-rap-demo:latest
The RAP demo applications are then reachable at localhost on port 10000 from a web browser. Depending on the RAP version the URL differs:
Content type
Image
Digest
sha256:a5b9d4065…
Size
257.9 MB
Last updated
over 11 years ago
docker pull eclipsesource/eclipse-rap-demo