Skip to content

Commit

Permalink
[docs] Include architecture name for Raspberry Pi
Browse files Browse the repository at this point in the history
  • Loading branch information
deviantintegral authored Mar 6, 2023
2 parents 2a684e9 + 2cd4641 commit 824bdd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rtl_433_mqtt_autodiscovery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Follow these steps to run just the autodiscovery script in a dedicated container
docker run -e MQTT_HOST=mqtt.example.com -e MQTT_USERNAME=username -e MQTT_PASSWORD=password ghcr.io/pbkhrv/rtl_433-hass-addons-rtl_433_mqtt_autodiscovery-amd64
```

Replace `amd64` with your appropriate architecture.
Replace `amd64` with your appropriate architecture. For Raspberry Pi, this is `armhf`, `armv7`, or `aarch64` depending on your Pi version and operating system. If unsure, running `arch` at the command line can help identify the architecture.

Using docker-compose:

Expand All @@ -123,7 +123,7 @@ version: '3'
services:
rtl_433_autodiscovery:
container_name: rtl_433_autodiscovery
image: ghcr.io/pbkhrv/rtl_433-hass-addons-rtl_433_mqtt_autodiscovery-amd64
image: ghcr.io/pbkhrv/rtl_433-hass-addons-rtl_433_mqtt_autodiscovery-amd64 # On Raspberry Pi replace `amd64` with the appropriate architecture.
environment:
- MQTT_HOST=mqtt.example.com
- MQTT_USERNAME=username
Expand Down

0 comments on commit 824bdd6

Please sign in to comment.