This image provides the vert.x command so you don't have to install vert.x
Just launch:
docker run -i -t vertx/vertx3-exec
Append the vertx command parameter you need.
for instance:
> docker run -i -t vertx/vertx3-exec -version
3.0.0-SNAPSHOT
If you want to run a verticle:
docker run -i -t -p 8080:8080 \
-v $PWD:/verticles vertx/vertx3-exec \
run io.vertx.sample.RandomGeneratorVerticle \
-cp /verticles/MY_VERTICLE.jar
This command mounts the current directory into /verticles and then launch the vertx run command. Notice the -cp parameter reusing the /verticles directory.
Content type
Image
Digest
Size
301.2 MB
Last updated
about 5 years ago
docker pull vertx/vertx3-exec