You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If build with docker build -t paperless-asn-qr-code ., it can be used as follows:
docker run -it -v ./output:/app paperless-asn-qr-codes
# on windows: docker run -v .\ouput:/app paperless-asn-qr-codes
This creates a folder output in your current folder and place a labels.pdf in this directory. If you want to specify another starting label number, use the following command:
docker run -it -v ./output:/app paperless-asn-qr-codes <YOUR-NUMBER> labels.pdf
# on windows: docker run -it -v .\output:/app paperless-asn-qr-codes<YOUR-NUMBER> labels.pdf
So, if you need other options from paperless-asn-qr-codes, add it to the last command shown above.
If you want to get inside of the container, use the following:
docker run -it -v ./output:/app --entrypoint sh paperless-asn-qr-codes
# on windows: docker run -it -v .\output:/app --entrypoint sh paperless-asn-qr-codes
Then you can use it like it is locally installed.
Bye.
The text was updated successfully, but these errors were encountered:
Hey,
i added a Dockerfile for myself, so i can run your tool without compromising my setup. Feel free to include / modify / ignore. :)
Usage
If build with
docker build -t paperless-asn-qr-code .
, it can be used as follows:docker run -it -v ./output:/app paperless-asn-qr-codes # on windows: docker run -v .\ouput:/app paperless-asn-qr-codes
This creates a folder
output
in your current folder and place a labels.pdf in this directory. If you want to specify another starting label number, use the following command:So, if you need other options from paperless-asn-qr-codes, add it to the last command shown above.
If you want to get inside of the container, use the following:
docker run -it -v ./output:/app --entrypoint sh paperless-asn-qr-codes # on windows: docker run -it -v .\output:/app --entrypoint sh paperless-asn-qr-codes
Then you can use it like it is locally installed.
Bye.
The text was updated successfully, but these errors were encountered: