Sign inSign up

vertx/vertx3-exec

By vertx

Updated about 5 years ago

Vert.x 3 stack - vertx command

Artifact
Image
26

5M+

vertx/vertx3-exec repository overview

Vertx 3 Stack - vertx command

This image provides the vert.x command so you don't have to install vert.x

Launching the image

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.

Tag summary

Content type

Image

Digest

Size

301.2 MB

Last updated

about 5 years ago

docker pull vertx/vertx3-exec