Sync of ntfy.sh image.
Find a file
renovate-bot 7b8f5ab2d5
All checks were successful
ci/woodpecker/push/move_staging Pipeline was successful
ci/woodpecker/cron/vulnerability Pipeline was successful
ci/woodpecker/cron/renovate Pipeline was successful
ci/woodpecker/cron/auto_merge Pipeline was successful
ci/woodpecker/cron/move_prod Pipeline was successful
Update docker.io/binwiederhier/ntfy:v2.21 Docker digest to 2b9e12d (#5)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/binwiederhier/ntfy](https://ntfy.sh/) ([source](https://github.com/binwiederhier/ntfy)) | digest | `28cb21e` → `2b9e12d` |

---

### Configuration

📅 **Schedule**: (UTC)

- Branch creation
  - At any time (no schedule defined)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMTAuNCIsInVwZGF0ZWRJblZlciI6IjQzLjExMC40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Reviewed-on: #5
2026-04-16 21:11:10 +00:00
.markdownlint.json Initial commit 2026-04-16 20:52:45 +00:00
.prettierrc Initial commit 2026-04-16 20:52:45 +00:00
images.ini Update docker.io/binwiederhier/ntfy:v2.21 Docker digest to 2b9e12d (#5) 2026-04-16 21:11:10 +00:00
LICENSE Initial commit 2026-04-16 20:52:45 +00:00
README.md Add images (#1) 2026-04-16 21:06:05 +00:00
renovate.json Add renovate.json (#4) 2026-04-16 21:08:51 +00:00

Image copy of ntfy.sh

ntfy (pronounce: notify) is a simple HTTP-based pub-sub notification service. It allows you to send notifications to your phone or desktop via scripts from any computer, entirely without signup or cost. It's also open source (as you can plainly see) if you want to run your own.

Links:

Example to use image

To run a private non-root instance, by Podman Quadlet:

[Unit]
Description=ntfy.sh service
StartLimitBurst=5
StartLimitIntervalSec=90

[Container]
# Base options
AutoUpdate=registry
Exec=serve
Image=code.thinkaboutit.tech/pandora/ntfy:latest

# Storage options
Volume=ntfy-cache.volume:/var/cache/ntfy
Volume=ntfy-config.volume:/etc/ntfy
Volume=ntfy-user.volume:/var/lib/ntfy

# Network options
PublishPort=8080:8080

# Environment options
Environment="NTFY_AUTH_DEFAULT_ACCESS=deny-all"
Environment="NTFY_AUTH_FILE=/var/lib/ntfy/user.db"

# Other options
UserNS=keep-id

[Service]
Restart=on-failure
RestartSec=2

[Install]
WantedBy=default.target

On the config volume a server.yaml file must override port 80, to be able to run as non-root.

listen-http: ":8080"

# In case of iOS app, this is also need
base-url: https://example.com
upstream-base-url: "https://ntfy.sh"