Raspberry Pi

Raspberry Pi is a popular and affordable computer that you can use to learn programming, automate tasks at home or just run a web server. Webhook Relay offers an ARM and aarch64 based Docker images that you can use on a Raspberry Pi (or any other similar device).

An easiest way to deploy webhookrelayd agent on your Raspberry Pi is to use docker. Full article on it can be found here. To install it, simply:

curl -sSL https://get.docker.com | sh

Use token key and secret (get token from https://my.webhookrelay.com/tokens) to start webhookrelayd container:

# to run in a standard webhook forwarding way (will forward any webhooks that hit 'rpi' bucket)
docker run --name whr-relayd --net host --restart always -d webhookrelay/webhookrelayd-arm:latest --bucket rpi -k your-key -s your-secret

# to start a bidirectional tunnel
docker run --name whr-relayd --net host --restart always -d webhookrelay/webhookrelayd-arm:latest --mode tunnel -t rpi -k your-key -s your-secret

Available images:

  • arm 64bit: webhookrelay/webhookrelayd-aarch64:latest

  • arm 32bit: webhookrelay/webhookrelayd-arm:latest

Last updated