https://github.com/samrocketman/docker-webhookrelay
A minimal sidecar container meant to run a webhook relay for a local docker service.
https://github.com/samrocketman/docker-webhookrelay
Last synced: 5 months ago
JSON representation
A minimal sidecar container meant to run a webhook relay for a local docker service.
- Host: GitHub
- URL: https://github.com/samrocketman/docker-webhookrelay
- Owner: samrocketman
- License: mit
- Created: 2022-11-03T02:12:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-03T06:22:06.000Z (over 3 years ago)
- Last Synced: 2025-01-06T10:13:24.612Z (over 1 year ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Minimal webhookrelay sidecar
This is a minimal docker image for https://webhookrelay.com/
A minimal sidecar container meant to run a webhook relay for a networked docker
service.
# Credentials and setup
Create a file named `.env` at the root of this repo. Populate it with the
following environment variables.
```bash
RELAY_KEY=your auth key
RELAY_SECRET=your auth secret
RELAY_BUCKET=forward relay bucket name
```
# Build the Docker image
docker build -t relay .
# Run the docker image
Connect the relay with the following docker command.
docker run --env-file .env relay
# Additional information
The relay container is under 25MB. This is a proof of concept designed to be
run alongside another service with secrets provided in the environment.
This Docker image is designed to be built on the following architectures:
* `x86_64` or `amd64`
* `aarch64` or `arm64`