mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 17:56:53 +02:00
add frigate
This commit is contained in:
parent
80e587d289
commit
64b17a6d4b
@ -370,6 +370,7 @@ A collection of delicious docker recipes.
|
||||
- [x] mher/flower
|
||||
- [x] fluent/fluent-bit
|
||||
- [x] friendica
|
||||
- [x] ghcr.io/blakeblackshear/frigate
|
||||
- [x] ghost
|
||||
- [x] gitlab/gitlab-ce
|
||||
- [x] atlassianlabs/gostatsd
|
||||
|
6
frigate/README.md
Normal file
6
frigate/README.md
Normal file
@ -0,0 +1,6 @@
|
||||
frigate
|
||||
=======
|
||||
|
||||
[Frigate][1] - NVR With Realtime Object Detection for IP Cameras
|
||||
|
||||
[1]: https://github.com/blakeblackshear/frigate
|
30
frigate/docker-compose.yml
Normal file
30
frigate/docker-compose.yml
Normal file
@ -0,0 +1,30 @@
|
||||
#
|
||||
# See: https://docs.frigate.video/frigate/installation/#docker
|
||||
#
|
||||
|
||||
version: "3.9"
|
||||
services:
|
||||
frigate:
|
||||
image: ghcr.io/blakeblackshear/frigate:stable-standard-arm64
|
||||
ports:
|
||||
- "5000:5000"
|
||||
- "8554:8554"
|
||||
- "8555:8555/tcp"
|
||||
- "8555:8555/udp"
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- ./data/etc:/config
|
||||
- ./data/var:/media/frigate
|
||||
- type: tmpfs
|
||||
target: /tmp/cache
|
||||
tmpfs:
|
||||
size: 1000000000
|
||||
devices:
|
||||
- /dev/bus/usb:/dev/bus/usb
|
||||
- /dev/video11:/dev/video11
|
||||
- /dev/dri/renderD128:/dev/dri/renderD128
|
||||
environment:
|
||||
- FRIGATE_RTSP_PASSWORD=password
|
||||
shm_size: "64mb"
|
||||
privileged: true
|
||||
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user