mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01: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
|
||
|
|