-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
database not reciving alerts #29
Comments
Have you looked at the container logs at all? To troubleshoot we would want to know what it says in there, what it says in the BI logs, and if there are any errors. If you see "no stream" in BI, try reducing the size and quality of your JPEGS in BI. That fixed it for me. |
I am having the same issue. Docker log shows password authentication error for user postgres. I have tried fixing it via reinstalling via the updated script, editing the docker compose, & via the web console - (ports are also open) nothing is fixing it. Any suggestions? 025-02-23 08:36:57 app-1 | camera: 'gate1', |
Changing the password in the compose file won't do anything after it has been created. Those values are only used for first time setup. If you need to change the database password, it has to be done manually with an SQL client. Use the password you first used when setting it up and it should work. https://stackoverflow.com/questions/12720967/how-can-i-change-a-postgresql-user-password |
I am deleting the docker container each time and then running a new install using the windows script you provided. I also tried changing the password and saving in the console. |
I do see No stream in BI and nothing is getting recorded. How do I change size and quality of what is being posted? |
container log...```
|
First of all, wanted to say thank you for this project, I wouldn't be surprised if BI would add something like this or even this as part of the ALPR feature set.
I'm getting ALPR alerts w/ the plate number on BI but after setting up thealert with web request I'm not getting anything populated.
I did change the port from 3000 to 4000 and made sure to make that change on the alert and tried several alerts with plate & memo and got no luck
Attached is my docker compose, I do host a handful of other items, but I don't think that impacted anything.
version: "3.9"
networks:
rustdesk-net:
external: false
nc-net:
external: false
services:
qbittorrent:
image: linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- WEBUI_PORT=8090
volumes:
# - /media/downloads:z
- /media/2tb/qbt/config:/config:z
- /media:/media:z
ports:
- 8090:8090
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
plex:
image: linuxserver/plex:latest
container_name: plex
restart: unless-stopped
environment:
- TZ=America/Chicago
- PUID=1000
- PGID=1000
- VERSION=docker
volumes:
- /media:/media:z
- /media/Media/DockerLinks/PlexLinks/config:/config:z
network_mode: host
tautulli:
image: ghcr.io/tautulli/tautulli
container_name: tautulli
restart: unless-stopped
volumes:
- /media/Media/tautulli/config:/config:z
environment:
- TZ=America/Chicago
- PUID=1000
- PGID=1000
ports:
- 8181:8181
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
ports:
- 3030:3000
volumes:
- /media:/media:z
- /media/Media/hompage:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integration
restart: unless-stopped
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
- /media/Media/homeassistnat/DockerLinks:/config
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped
privileged: true
ports:
- 8123:8123
heimdall:
image: lscr.io/linuxserver/heimdall:latest
container_name: heimdall
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
volumes:
- /media/Media/DockerLinks/HeimdallLinks/config:/config
ports:
- 80:80
- 443:443
restart: unless-stopped
palworld-dedicated-server:
#build: .
container_name: palworld-dedicated-server
image: jammsen/palworld-dedicated-server:latest
restart: unless-stopped
ports:
- target: 8211 # Gamerserver port inside of the container
published: 8211 # Gamerserver port on your host
protocol: udp
mode: host
- target: 25575 # RCON port inside of the container
published: 25575 # RCON port on your host
protocol: tcp
mode: host
env_file:
- ./default.env
volumes:
- ./game:/palworld
audiobookshelf:
image: ghcr.io/advplyr/audiobookshelf:latest
ports:
- 13378:80
volumes:
- /media/3rd2tb/audiobookshelf/audiobooks:/audiobooks:z
- /media/3rd2tb/audiobookshelf/podcasts:/podcasts:z
- /media/Media/DockerLinks/audiobookshelf/config:/config:z
- /media/3rd2tb/audiobookshelf/metadata:/metadata:z
environment:
- TZ=America/Chicago
restart: unless-stopped
nessus:
image: tenable/nessus:10.6.1-ubuntu
restart: always
container_name: nessus
environment:
USERNAME: alex
PASSWORD: fakepassowrd
ACTIVATION_CODE: xxxxxxxxxxxxxxxxxxxxxxxxxxxx
ports:
- 8834:8834
valheim:
image: mbround18/valheim:latest
ports:
- 2456:2456/udp
- 2457:2457/udp
- 2458:2458/udp
environment:
PORT: 2456
NAME: "Blazin"
WORLD: "Dedicated"
PASSWORD: "fakepassword"
TZ: "America/Chicago"
PUBLIC: 1
volumes:
- /media:/media:z
- /media/media/DockerLinks/Valheim/saves:/home/steam/.config/unity3d/IronGate/Valheim:z
- /media/media/DockerLinks/Valheim/server:/home/steam/valheim:z
CodeProjectAI:
image: codeproject/ai-server
container_name: codeproject-ai-server-cpu
hostname: codeproject-ai-server
restart: unless-stopped
ports:
- "32168:32168"
environment:
- TZ=America/Toronto
alpr:
image: algertc/alpr-dashboard:latest
restart: unless-stopped
ports:
- "4000:3000" # Change the first port to the port you want to expose
environment:
- NODE_ENV=production
- ADMIN_PASSWORD=fakepassowrd # Change this to a secure password
- DB_PASSWORD=fakepassowrd # Change this to match your postgres password
depends_on:
- db
volumes:
- app-auth:/app/auth
- app-config:/app/config
db:
image: postgres:13
environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=fakepassowrd # Change this to a secure password
volumes:
- db-data:/var/lib/postgresql/data:z
- ./schema.sql:/docker-entrypoint-initdb.d/schema.sql:z
- ./migrations.sql:/migrations.sql:z
volumes:
db-data:
app-auth:
driver: local
driver_opts:
type: none
o: bind
device: ./auth
app-config:
driver: local
driver_opts:
type: none
o: bind
device: ./config
The text was updated successfully, but these errors were encountered: