github-router 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -121,6 +121,15 @@ All endpoints also available without the `/v1` prefix.
|
|
|
121
121
|
|
|
122
122
|
## Docker
|
|
123
123
|
|
|
124
|
+
Pre-built images on GitHub Container Registry:
|
|
125
|
+
|
|
126
|
+
```sh
|
|
127
|
+
docker pull ghcr.io/animeshkundu/github-router:latest
|
|
128
|
+
docker run -p 8787:8787 -e GH_TOKEN=your_token ghcr.io/animeshkundu/github-router
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Or build locally:
|
|
132
|
+
|
|
124
133
|
```sh
|
|
125
134
|
docker build -t github-router .
|
|
126
135
|
docker run -p 8787:8787 -e GH_TOKEN=your_token github-router
|