Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 375 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 375 Bytes

Quick and dirty docker container for generating QR codes on the terminal, using libqrencode.

It can read from stdin:

echo https://nickurak.ca/ | docker run --rm -i atrus/qru -

It can read a single param:

docker run --rm atrus/qru "Hello"

It also serves as a pretty short example of how to use multi-stage docker builds. See the Dockerfile for details.