mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-08 06:15:43 +03:00
9 lines
223 B
Plaintext
9 lines
223 B
Plaintext
|
|
#!/command/with-contenv bash
|
||
|
|
# shellcheck shell=bash
|
||
|
|
# Download yolov8 models when DOWNLOAD_YOLOV8=1 environment variable is set
|
||
|
|
|
||
|
|
set -o errexit -o nounset -o pipefail
|
||
|
|
|
||
|
|
python3 /opt/frigate/frigate/util/download_models.py
|
||
|
|
|