1
1
Fork 0
dpinger-container/README.md

31 lines
806 B
Markdown
Raw Permalink Normal View History

2023-12-18 17:52:54 +01:00
# dpinger-container
Multi-arch Docker image for [dpinger](https://github.com/dennypage/dpinger) with [ntfy.sh](https://ntfy.sh) integration. The image is based off of `alpine:latest`.
2023-12-19 06:51:45 +01:00
## Usage
Using this image with `docker run` directly:
```
docker run --rm -it -e NTFY_URL=https://ntfy.sh/test \
git.socialnerds.org/david/dpinger-container:latest \
-i <identifier> -L 15 -D 80 <ip-address>
```
or with `docker compose`:
```
version: "3.7"
services:
dpinger-container:
image: git.socialnerds.org/david/dpinger-container:latest
command: -i <identifier> -L 15 -D 80 <ip-address>
restart: unless-stopped
environment:
- NTFY_URL=https://ntfy.sh/test
```
For more information check out the documentation of the [dpinger project on Github](https://github.com/dennypage/dpinger).