1
1
Fork 0

added metadata to the image and updated README.md

This commit is contained in:
david 2023-12-19 09:44:18 +01:00
parent 171efcc0c7
commit 4c6edbcaf9
2 changed files with 7 additions and 1 deletions

View File

@ -9,6 +9,10 @@ RUN apk --no-cache add clang gcc git libc-dev make && \
# Build final Docker image
FROM alpine:latest
LABEL Description="This image is based on alpine:latest and is used run dpinger" \
Author="david@socialnerds.org" \
Version="0.1" \
License="MIT"
RUN apk --no-cache add curl
COPY --from=build /tmp/dpinger/dpinger /usr/local/bin/

View File

@ -1,6 +1,6 @@
# dpinger-container
Docker image for [dpinger](https://github.com/dennypage/dpinger) with [ntfy.sh](https://ntfy.sh) integration. The image is based off of `alpine:latest` and supports `amd64` and `arm64`.
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`.
## Usage
@ -26,3 +26,5 @@ services:
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).