-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
[Config Support]: Frigate in Docker on Linux Mint 23.1 on a MSFT Surface 5 with i5 #10666
Replies: 2 comments · 11 replies
-
your config mount is incorrect, it should be |
Beta Was this translation helpful? Give feedback.
All reactions
-
This is fantastic help. Or should it work if I remove the database from the config file? |
Beta Was this translation helpful? Give feedback.
All reactions
-
I would just remove the config and let it use the default (which is /config/frigate.db) |
Beta Was this translation helpful? Give feedback.
All reactions
-
Still not working!!
|
Beta Was this translation helpful? Give feedback.
All reactions
-
So I guess it is basically saying that it did not find the coral TPU, which is plugged into a powered USB hub from MSFT. The TPU shows that it has power flowing to it, i.e. the blue light it on. |
Beta Was this translation helpful? Give feedback.
All reactions
-
homeassistant.local isn't going to work, you should use the ip address. and yes, you may want to try starting again and see if it sees the coral |
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1
-
Amazing response time.
Thank you. I'll make those changes and try again.
Regards
Trevor Miles
Azirella | +351 9 1010 8221
[signatureImage]
…________________________________
From: Nicolas Mowen ***@***.***>
Sent: Monday, March 25, 2024 3:43:01 PM
To: blakeblackshear/frigate ***@***.***>
Cc: MilesAheadToo ***@***.***>; Author ***@***.***>
Subject: Re: [blakeblackshear/frigate] [Config Support]: Frigate in Docker on Linux Mint 23.1 on a MSFT Surface 5 with i5 (Discussion #10666)
your config mount is incorrect, it should be - /mnt/1TB_SSD/frigate/config/:/config/ as the docs say the entire config directory needs to be passed in. Also, the name of the config file should be config.yml or config.yaml not frigate.yml
—
Reply to this email directly, view it on GitHub<#10666 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ASZCC5HNQKR72OAW2G62JVTY2BAYLAVCNFSM6AAAAABFHHWN4CVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DSMBUGQ2DC>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Describe the problem you are having
I am struggling to get docker configured correctly. It is the first time I have used Docker so newbie alert. I've read the Frigate documentation and several other guides on the internet.
Version
Latest version though I'm not operational yet
Frigate config file
Relevant log output
Frigate stats
No response
Operating system
Debian
Install method
Docker Compose
Coral version
USB
Any other information that may be helpful
This is my Docker compose file, which is where I suspect I have the problem.
'''
version: "3.9"
services:
frigate:
container_name: frigate
privileged: true # this may not be necessary for all setups
restart: unless-stopped
image: ghcr.io/blakeblackshear/frigate:stable
shm_size: "512mb" # update for your cameras based on calculation
devices:
- /dev/bus/usb:/dev/bus/usb
#- /dev/dri/renderD128 # for intel hwaccel, needs to be updated for your hardware
volumes:
- /etc/localtime:/etc/localtime:ro
- /mnt/1TB_SSD/frigate/config/frigate.yml:/config/config.yml:ro
- /mnt/1TB_SSD/frigate/media:/media/frigate
- type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
target: /tmp/cache
tmpfs:
size: 1000000000
ports:
- "5000:5000"
# - "1935:1935" # RTMP feeds – comment out if not needed , it may conflict with other containers
- "8555:8555/tcp" # WebRTC over tcp
- "8555:8555/udp" # WebRTC over udp
environment:
FRIGATE_MQTT_USER: "mqtt-user"
FRIGATE_MQTT_PASSWORD: "mqtt-user"
# FRIGATE_RTSP_PASSWORD: #"password" #modify to whatever if using rtsp
Beta Was this translation helpful? Give feedback.
All reactions