BQGenCode: Barcode and QR Code Generator
2.1K
This website is an interactive tool designed to easily create QR codes and barcodes in different standards from any text, URL, number, or content you wish to encode. The interface is elegant, modern, and fully responsive, ensuring a comfortable experience on any device.
The generator allows you to view and download the generated codes as images, making it easy to integrate them into documents, presentations, labels, or any practical application.
Type selector: Choose from several code formats:
Clear interface: The selector displays descriptive names so users know exactly which format they are choosing.
docker run -d --name test-bqgencode -p 7173:80 -v $(pwd)/data:/config/www/data humbertovarona/bqgencode
Then, open in your browser:
http://ccc.nnn.sss.xxx:7173/
docker run -d --name test-bqgencode -e REDIRECT_TO_HTTPS=yes -e AUTOCERT=yes -p 7443:443 -v $(pwd)/data:/config/www/data -v $(pwd)/ssl:/config/ssl humbertovarona/bqgencode
docker run -d --name test-bqgencode -e REDIRECT_TO_HTTPS=yes -p 7443:443 -v $(pwd)/data:/config/www/data -v $(pwd)/ssl:/config/ssl humbertovarona/bqgencode
Then, open in your browser:
https://192.168.1.4:ccc.nnn.sss.xxx:7443/
docker stop test-bqgencode
docker rm test-bqgencode
docker rmi -f humbertovarona/bqgencode
You can also use docker-compose for easier multi-run setup. Create a file named docker-compose.yml in your project directory with the following contents:
version: "3"
services:
bqgencode:
image: humbertovarona/bqgencode
container_name: test-bqgencode
ports:
- "7173:80"
# Uncomment for HTTPS:
# - "7443:443"
environment:
# Uncomment these for HTTPS
# REDIRECT_TO_HTTPS: "yes"
# AUTOCERT: "yes" # Only needed first run to auto-generate certs
volumes:
- ./data:/config/www/data
# Uncomment for HTTPS certificate persistence:
# - ./ssl:/config/ssl
restart: unless-stopped
docker-compose up -d
docker-compose down
To ensure the container is healthy and working correctly, use these commands:
Check container health status:
docker inspect --format='{{json .State.Health}}' test-bqgencode | jq
(If you don't have
jq, simply omit it.)
View container logs:
docker logs test-bqgencode
Access container shell:
docker exec -it test-bqgencode /bin/sh
š¦ Software License
This software is published under the Creative Commons Attribution 4.0 International License (CC0 1.0 Universal). You are free to use, modify, and distribute this code for any purpose, provided that proper credit is given to the original author.
HL Varona
š§ [email protected]ā
š§ Project: VaronaTech
Content type
Image
Digest
sha256:2c06d9338ā¦
Size
31.1 MB
Last updated
over 1 year ago
docker pull humbertovarona/bqgencode