A small application that generates a QR-Code from text.
Build a container image
./mvnw \
--define build-container-image \
clean package
The resulting image will be named de.turing85/qr-code-generator:latest
Starting the image
docker run \
--detach \
--rm \
--publish 8080:8080 \
--name qr-code-generator \
de.turing85/qr-code-generator:latest
To test the application, access http://localhost:8080/qr-code/foo%20bar%20baz
Build a container image
./mvnw \
--define native \
--define build-container-image \
clean package
The resulting image will be named de.turing85/qr-code-generator:latest
and de.turing85/qr-code-generator:native
Starting a container
docker run \
--detach \
--rm \
--publish 8080:8080 \
--name qr-code-generator \
de.turing85/qr-code-generator:latest
To test the application, access http://localhost:8080/qr-code/foo%20bar%20baz
Thanks goes to these wonderful people (emoji key):
Marco Bungart 💻 🚧 📖 |