mirror of
https://github.com/getumbrel/umbrel-apps.git
synced 2024-11-11 16:09:18 +00:00
154b13c51c
Co-authored-by: nmfretz <nmfretz@gmail.com>
31 lines
947 B
YAML
31 lines
947 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: frigate_web_1
|
|
APP_PORT: 5000
|
|
PROXY_AUTH_ADD: "false"
|
|
|
|
web:
|
|
privileged: true # this may not be necessary for all setups
|
|
restart: unless-stopped
|
|
image: ghcr.io/blakeblackshear/frigate:0.13.2@sha256:2906991ccad85035b176941f9dedfd35088ff710c39d45ef1baa9a49f2b16734
|
|
shm_size: "128mb" # update for your cameras based on calculation above
|
|
devices:
|
|
- /dev:/dev
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- ${APP_DATA_DIR}/data/config:/config
|
|
- ${APP_DATA_DIR}/data/storage:/media/frigate
|
|
- type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
|
|
target: /tmp/cache
|
|
tmpfs:
|
|
size: 1000000000
|
|
ports:
|
|
- "8554:8554" # RTSP feeds
|
|
- "8555:8555/tcp" # WebRTC over tcp
|
|
- "8555:8555/udp" # WebRTC over udp
|
|
environment:
|
|
FRIGATE_RTSP_PASSWORD: ${APP_PASSWORD}
|