From 9fe73abe4e21a42409e3985081fb188faef766bf Mon Sep 17 00:00:00 2001 From: Michael Scheidel Date: Sat, 6 Dec 2025 16:54:36 +0100 Subject: [PATCH] =?UTF-8?q?smart=20home/frigate/docker-compose.yaml=20hinz?= =?UTF-8?q?ugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- smart home/frigate/docker-compose.yaml | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 smart home/frigate/docker-compose.yaml diff --git a/smart home/frigate/docker-compose.yaml b/smart home/frigate/docker-compose.yaml new file mode 100644 index 0000000..91a52b0 --- /dev/null +++ b/smart home/frigate/docker-compose.yaml @@ -0,0 +1,32 @@ +services: + frigate: + image: ghcr.io/blakeblackshear/frigate:0.16.2 + container_name: frigate + hostname: frigate + restart: on-failure:5 + security_opt: + - apparmor=unconfined + - systempaths=unconfined + shm_size: 512mb + environment: + TZ: Europe/Berlin + FRIGATE_RTSP_PASSWORD: ?Aichwald01 + #devices: + # - /dev/dri/renderD128 # for NAS with an Intel Hardware Accelerator + volumes: + - /etc/localtime:/etc/localtime:de + - config:/config:rw + - media:/media/frigate:rw + - type: tmpfs + target: /tmp/cache + tmpfs: + size: 1000000000 + ports: + - 5563:5000 #Web UI Interface Port + - 8554:8554 # RTSP feeds + - 8555:8555/tcp # WebRTC over tcp + - 8555:8555/udp # WebRTC over udp + +volumes: + config: + media: \ No newline at end of file