Skip to content

jenisov/vscode-remote-quarkus

 
 

Repository files navigation

Vscode Remote Development Containers: Quarkus

dev mode

mvn clean compile quarkus:dev

call endpoint with curl localhost:8080/hello

test

mvn clean test

build native executable

mvn clean package -Pnative
# Find executable in `target` directory.
ls -l target

run integration tests against native executable

mvn verify -Pnative

build docker image with native executable

docker build -t quarkus/getting-started .

run docker image with native executable

docker run --name getting-started -d -p 8081:8080 quarkus/getting-started

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 37.5%
  • HTML 32.0%
  • Dockerfile 29.7%
  • Shell 0.8%