Full ALPR Database System for Blue Iris!

So I just tried installing this using the script, and everything seems to have completed correctly, except that it keeps throwing "incorrect password" errors when I try to log into the app (). I triple checked the password is correct. I even deleted/reinstalled the container (again using the script) with a very simple password to make sure. Am I missing something here?

Do you have an auth directory?
 
Sorry I am a complete newb when it comes to docker. I just followed the instructions on the github to install on the BI pc. What is an auth directory?
 
Sorry I am a complete newb when it comes to docker. I just followed the instructions on the github to install on the BI pc. What is an auth directory?

Take a look at your docker compose file, you should have lines in there that look like this:

volumes:
- app-auth:/app/auth
- app-config:/app/config
- app-plate_images:/app/storage

volumes:
db-data:
app-auth:
driver: local
driver_opts:
type: none
o: bind
device: ./auth

Check if this directory exists and has the correct permissions.



... it's step 3 if you were installing manually:

Quick Start:​

  1. Ensure you have Docker and Docker compose installed on your system.
  2. In a new directory, create a file named docker-compose.yml and paste in the content below, changing the variables to the passwords you would like to use.
  3. Create three new directories / folders in this directory called "config", "storage", and "auth". These will ensure that your data is saved separately and not lost during updates.
 
  • Like
Reactions: Vettester