mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 01:21:15 +01:00
9 lines
263 B
Docker
9 lines
263 B
Docker
FROM alpine
|
|
MAINTAINER Philipp C. Heckel <philipp.heckel@gmail.com>
|
|
|
|
COPY ntfy /usr/bin
|
|
|
|
HEALTHCHECK --interval=60s --timeout=10s CMD wget -q --tries=1 http://localhost/v1/health -O - | grep -Eo '"healthy"\s*:\s*true' || exit 1
|
|
|
|
EXPOSE 80/tcp
|
|
ENTRYPOINT ["ntfy"]
|