From 3376e85be69bacc93a5eef5d28b3f5a9d66368b8 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sat, 13 Aug 2022 05:45:32 -0600 Subject: [PATCH] Update docs to reflect new image multiarch tag (#3570) * Update docs to reflect new image multiarch * simplify Co-authored-by: Blake Blackshear --- docs/docs/installation.md | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/docs/docs/installation.md b/docs/docs/installation.md index b2c1d65bf..5a6d02eb7 100644 --- a/docs/docs/installation.md +++ b/docs/docs/installation.md @@ -100,18 +100,7 @@ Additionally, the USB Coral draws a considerable amount of power. If using any o ## Docker -Running in Docker directly is the recommended install method. - -Make sure you choose the right image for your architecture: - -| Arch | Image Name | -| ----------- | ------------------------------------------ | -| amd64 | blakeblackshear/frigate:stable-amd64 | -| amd64nvidia | blakeblackshear/frigate:stable-amd64nvidia | -| armv7 | blakeblackshear/frigate:stable-armv7 | -| aarch64 | blakeblackshear/frigate:stable-aarch64 | - -It is recommended to run with docker-compose: +Running in Docker with compose is the recommended install method: ```yaml version: "3.9" @@ -120,7 +109,7 @@ services: container_name: frigate privileged: true # this may not be necessary for all setups restart: unless-stopped - image: blakeblackshear/frigate: + image: blakeblackshear/frigate:stable shm_size: "64mb" # update for your cameras based on calculation above devices: - /dev/bus/usb:/dev/bus/usb # passes the USB Coral, needs to be modified for other versions @@ -157,7 +146,7 @@ docker run -d \ -e FRIGATE_RTSP_PASSWORD='password' \ -p 5000:5000 \ -p 1935:1935 \ - blakeblackshear/frigate: + blakeblackshear/frigate:stable ``` ## Home Assistant Operating System (HassOS)