Fix frigate service restarting inside devcontainer

This commit is contained in:
Felipe Santos 2023-01-18 11:35:55 -03:00
parent 02df2a8bbd
commit 9738c81aa6

View File

@ -2,7 +2,12 @@
# 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 "The fake Frigate service is running..."
echo "[INFO] The fake Frigate service is running..."
sleep 5s
done