25 lines
755 B
YAML
25 lines
755 B
YAML
|
|
services:
|
||
|
|
rss-ntfy:
|
||
|
|
build: .
|
||
|
|
image: rss-ntfy:latest
|
||
|
|
container_name: rss-ntfy
|
||
|
|
restart: unless-stopped
|
||
|
|
ports:
|
||
|
|
- "8000:8000"
|
||
|
|
volumes:
|
||
|
|
- rss_ntfy_data:/data
|
||
|
|
environment:
|
||
|
|
# Default ntfy server for feeds without their own.
|
||
|
|
DEFAULT_NTFY_SERVER: "https://ntfy.sh"
|
||
|
|
# Feed poll interval in minutes (initial value; editable in the UI).
|
||
|
|
DEFAULT_CHECK_INTERVAL: "5"
|
||
|
|
# Bootstrap admin credentials (used only on first start). Change these!
|
||
|
|
ADMIN_USERNAME: "admin"
|
||
|
|
ADMIN_PASSWORD: "admin"
|
||
|
|
# Optional: set a fixed cookie secret. If omitted one is generated and
|
||
|
|
# persisted in the data volume.
|
||
|
|
# SECRET_KEY: "change-me-to-a-long-random-string"
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
rss_ntfy_data:
|