16 lines
418 B
YAML
16 lines
418 B
YAML
services:
|
|
frigate:
|
|
container_name: frigate
|
|
restart: always
|
|
image: ghcr.io/blakeblackshear/frigate:stable
|
|
volumes:
|
|
- ./config:/config
|
|
- ./storage:/media/frigate
|
|
- type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
|
|
target: /tmp/cache
|
|
tmpfs:
|
|
size: 1000000000
|
|
ports:
|
|
- "5000:5000"
|
|
- "8554:8554" # RTSP feeds
|
|
network_mode: host
|