Update docs to reflect new image multiarch tag (#3570)

* Update docs to reflect new image multiarch

* simplify

Co-authored-by: Blake Blackshear <blake@frigate.video>
This commit is contained in:
Nicolas Mowen 2022-08-13 05:45:32 -06:00 committed by GitHub
parent a94297ac93
commit 3376e85be6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,18 +100,7 @@ Additionally, the USB Coral draws a considerable amount of power. If using any o
## Docker ## Docker
Running in Docker directly is the recommended install method. Running in Docker with compose 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:
```yaml ```yaml
version: "3.9" version: "3.9"
@ -120,7 +109,7 @@ services:
container_name: frigate container_name: frigate
privileged: true # this may not be necessary for all setups privileged: true # this may not be necessary for all setups
restart: unless-stopped restart: unless-stopped
image: blakeblackshear/frigate:<specify_version_tag> image: blakeblackshear/frigate:stable
shm_size: "64mb" # update for your cameras based on calculation above shm_size: "64mb" # update for your cameras based on calculation above
devices: devices:
- /dev/bus/usb:/dev/bus/usb # passes the USB Coral, needs to be modified for other versions - /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' \ -e FRIGATE_RTSP_PASSWORD='password' \
-p 5000:5000 \ -p 5000:5000 \
-p 1935:1935 \ -p 1935:1935 \
blakeblackshear/frigate:<specify_version_tag> blakeblackshear/frigate:stable
``` ```
## Home Assistant Operating System (HassOS) ## Home Assistant Operating System (HassOS)