From 8c45076bb6b020a4a719333c9bd9cc0f66c2cca6 Mon Sep 17 00:00:00 2001 From: Radegast Date: Sun, 4 Oct 2020 10:30:01 +0200 Subject: [PATCH] Fix error in the docker run command I have very little experience with Docker, but it seems the command in the README has two mistakes in it: - unknown shorthand flag: 'n' in -name - docker: Error response from daemon: Invalid container name (blakeblackshear/frigate:stable), only [a-zA-Z0-9][a-zA-Z0-9_.-] are allowed. I am running Docker version 19.03.13-ce, build 4484c46d9d on Arch linux. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fdd141e32..554a4c055 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You see multiple bounding boxes because it draws bounding boxes from all frames Run the container with ```bash docker run --rm \ --name blakeblackshear/frigate:stable \ +--name frigate \ --privileged \ --shm-size=512m \ # should work for a 2-3 cameras -v /dev/bus/usb:/dev/bus/usb \