1
1
Fork 0
Multi-arch Docker image for dpinger with ntfy.sh integration. https://github.com/dennypage/dpinger
Go to file
david 4c6edbcaf9 added metadata to the image and updated README.md 2023-12-19 09:44:18 +01:00
Dockerfile added metadata to the image and updated README.md 2023-12-19 09:44:18 +01:00
README.md added metadata to the image and updated README.md 2023-12-19 09:44:18 +01:00
ntfy.sh Initial commit 2023-12-18 17:52:54 +01:00

README.md

dpinger-container

Multi-arch Docker image for dpinger with ntfy.sh integration. The image is based off of alpine:latest.

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.