Skip to content

A ntfy Docker image built on the LinuxServer team's Alpine base-image.

License

Notifications You must be signed in to change notification settings

raycadle/docker-ntfy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ntfy

ntfy.sh | Send push notifications to your phone or desktop via PUT/POST

ntfy (pronounced "notify") is a simple HTTP-based pub-sub notification service.

This is an unofficial Docker image built using the LinuxServer team's Alpine base-image.

Notice

Although using both binwiederhier's and LinuxServer's respective works at its core, this image is not associated with — nor endorsed by — either developers in any way, shape, or form. It is simply a project for me to learn container architecture, which I chose to make public in the spirit of FOSS. All rights belong to their respective owners.

The official ntfy Docker image can be found here and you can support its developer here and here, or contribute to its development here.

Usage

To use this image, simply run the following command:

docker run -p 8080:8080 ghcr.io/raycadle/ntfy:latest

or

podman run -p 8080:8080 ghcr.io/raycadle/ntfy:latest

Build

If you wish to build this image locally, you can do so by running the commands below.

Clone Repo

git clone https://github.com/raycadle/docker-ntfy.git && cd docker-ntfy

Build & Run

docker build --build-arg BUILD_DATE="$(date +%d/%m/%y)" --build-arg VERSION="$(date +%R:%S)" --tag ntfy:latest . && \
docker run \
  --name=ntfy \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=America/Belize \
  -p 8080:8080 \
  -v /path/to/data:/config \
  --restart unless-stopped \
  ntfy:latest

About

A ntfy Docker image built on the LinuxServer team's Alpine base-image.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages