[Config Support]: Still can't open Frigate after removing a :ro in docker-compose.yaml #11482
Unanswered
tomhusband
asked this question in
Config Support
Replies: 1 comment 6 replies
-
yes that is a problem, in general it means that /config is read only, something to do with teh host file system being read only ( |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Describe the problem you are having
I've been having a problem opening Frigate. I read here and here about similar problems when the
- /opt/frigate/config:/config: ro
file is read only. The solution is to remove the: ro
. I did that, rebooted everything but, still, nothing opens when I go to http://192.168.68.100:5000/. I really thought I had the fix.I used this tutorial to install.
The log the log from Portainer shows
[Errno 30] Read-only file system: '/config/model_cache'
. Would that be the problem? I'm not sure where that file is.Any suggestions on where to look now? I obviously missed something.
Version
Latest version I assume.I can't open the app
Frigate config file
Relevant log output
Frigate stats
No response
Operating system
Proxmox
Install method
Docker Compose
Coral version
USB
Any other information that may be helpful
Current docker-compose.yaml file:
version: '3.9'
services:
frigate:
container_name: frigate
privileged: true
restart: unless-stopped
image: ghcr.io/blakeblackshear/frigate:stable
shm_size: "128mb" # update for your cameras based on calculation above
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
- /opt/frigate/config:/config
- type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
target: /tmp/cache
tmpfs:
size: 1000000000
ports:
- "5000:5000"
- "1935:1935" # RTMP feeds
environment:
FRIGATE_RTSP_PASSWORD: "xxxxx.xxxxx"
Beta Was this translation helpful? Give feedback.
All reactions