Sign inSign up

a002k/helidon-se

By a002k

•Updated about 13 hours ago

Simple HelidonSE Application with Gradle and Docker support

Image
Languages & frameworks
Web servers
0

10K+

a002k/helidon-se repository overview

⁠Simple HelidonSE Application with Gradle and Docker support

⁠A simple service to greet you. Examples:

⁠Get default greeting message:

http://localhost:8080/simple-greet⁠

curl -X GET http://localhost:8080/simple-greet

http://localhost:8080/greet⁠

curl -X GET http://localhost:8080/greet
⁠Get greeting message for Joe:

http://localhost:8080/greet/Joe⁠

curl -X GET http://localhost:8080/greet/Joe
⁠Change greeting
curl -X PUT -d 'Howdy' http://localhost:8080/greet/greeting

⁠Run docker image

docker run --rm -p 8080:8080 a002k/helidon-se
docker run -d --name helidon-se --rm -p 8080:8080 a002k/helidon-se
  • -i Keep STDIN open even if not attached
  • --rm Remove container after stop
  • -d Detach mode, Run container in background and print container ID

and follow -f logs

docker logs -f helidon-se

to stop

docker stop helidon-se

Github Action Badge

Coverage Maintainability Rating Reliability Rating Security Rating

Bugs Code Smells Duplicated Lines (%) Vulnerabilities

Tag summary

Content type

Image

Digest

sha256:010e11862…

Size

253.3 MB

Last updated

about 13 hours ago

docker pull a002k/helidon-se