mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-23 14:55:29 +02:00
Add PodFetch template (#1035)
* Add PodFetch template * Use env array syntax in template.toml * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Address review: match version to image tag, expose admin_username variable, dark-mode friendly logo --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
19
blueprints/podfetch/docker-compose.yml
Normal file
19
blueprints/podfetch/docker-compose.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
podfetch:
|
||||
image: samuel19982/podfetch:v5.2.2
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- DATABASE_URL=sqlite:///app/db/podcast.db
|
||||
- POLLING_INTERVAL=300
|
||||
- BASIC_AUTH=true
|
||||
- USERNAME=${USERNAME}
|
||||
- PASSWORD=${PASSWORD}
|
||||
- GPODDER_INTEGRATION_ENABLED=true
|
||||
volumes:
|
||||
- podfetch-podcasts:/app/podcasts
|
||||
- podfetch-db:/app/db
|
||||
|
||||
volumes:
|
||||
podfetch-podcasts: {}
|
||||
podfetch-db: {}
|
||||
Reference in New Issue
Block a user