diff --git a/README.md b/README.md index af6aa219a..0ee0cddbc 100644 --- a/README.md +++ b/README.md @@ -91,12 +91,20 @@ If you can't use docker compose, you can run the container with: ```bash docker run --rm \ --name frigate \ +--restart unless-stopped \ --privileged \ -v /dev/bus/usb:/dev/bus/usb \ --v :/config:ro \ -v /etc/localtime:/etc/localtime:ro \ +-v :/config \ +-v :/clips \ +--mount type=tmpfs,target=/cache,tmpfs-size=100000000 \ -p 5000:5000 \ -e FRIGATE_RTSP_PASSWORD='password' \ +--health-cmd='wget -q -O- http://localhost:5000' \ +--health-interval=30s \ +--health-timeout=10s \ +--health-retries=5 \ +--health-start_period=3m \ blakeblackshear/frigate:stable-amd64 ```