blakeblackshear.frigate/docker/main/fake_frigate_run

14 lines
271 B
Plaintext
Raw Normal View History

#!/command/with-contenv bash
# shellcheck shell=bash
# Start the fake Frigate service
set -o errexit -o nounset -o pipefail
# Tell S6-Overlay not to restart this service
s6-svc -O .
while true; do
echo "[INFO] The fake Frigate service is running..."
sleep 5s
done