[Config Support]: Video Storage Path for SSD in Proxmox #10341
Replies: 3 comments
-
What did you end up with? I'm in the same noob predicament. |
Beta Was this translation helpful? Give feedback.
-
Nothing sadly, I am still stuck with no big storage. For now, Frigate is just for entertainment. |
Beta Was this translation helpful? Give feedback.
-
In Proxmox you need to add the storage to your container that you are running Frigate in, once you have a path in the VM for storage you add that path to the Docker compose file. Where you have |
Beta Was this translation helpful? Give feedback.
-
Describe the problem you are having
I have added a 4TB SSD and wish to direct by video storage to the new SSD. The Proxmox SSD path is: /mnt/pve/SSD_4TB/Video, but I am having a noob challenge directing my video output there. I am sure it is a sillly mistake in my first Compose below.
My Docker Compose:
version: '3.9'
services:
Frigate:
container_name: Frigate
privileged: true
restart: unless-stopped
image: ghcr.io/blakeblackshear/frigate:stable
shm_size: "384mb" # 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
- /dev/apex_0:/dev/apex_0 # passes a PCIe Coral, follow driver instructions here https://coral.ai/docs/m2/get-started/#2a-on-linux
volumes:
- /etc/localtime:/etc/localtime:ro
- /opt/frigate/config:/config:ro
#- /cctv_clips:/media/frigate
- /cctv_clips:/mnt/pve/SSD_4TB/Video
- 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:
Version
0.13.2-6476F8A
Frigate config file
Relevant log output
Frigate stats
Operating system
Proxmox
Install method
Docker Compose
Coral version
PCIe
Any other information that may be helpful
No response
Beta Was this translation helpful? Give feedback.
All reactions