mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
added pinchflat
This commit is contained in:
parent
d95185edad
commit
4696343ff4
2
.gitignore
vendored
2
.gitignore
vendored
@ -33,3 +33,5 @@ obsidian-livesync/data/
|
|||||||
kavita/data/
|
kavita/data/
|
||||||
kavita/manga/
|
kavita/manga/
|
||||||
metube/downloads/
|
metube/downloads/
|
||||||
|
pinchflat/config/
|
||||||
|
pinchflat/downloads/
|
||||||
|
@ -68,7 +68,7 @@ docker network create --driver bridge proxy
|
|||||||
- kavita 5003
|
- kavita 5003
|
||||||
- mealie 9925
|
- mealie 9925
|
||||||
- metube 8088
|
- metube 8088
|
||||||
- pinchflat
|
- pinchflat 8945
|
||||||
- netalertx
|
- netalertx
|
||||||
- netdata
|
- netdata
|
||||||
- demo: https://app.netdata.cloud/spaces/netdata-demo/rooms/all-nodes
|
- demo: https://app.netdata.cloud/spaces/netdata-demo/rooms/all-nodes
|
||||||
|
25
pinchflat/compose.yml
Normal file
25
pinchflat/compose.yml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# https://github.com/kieraneglin/pinchflat
|
||||||
|
|
||||||
|
# app for downloading YouTube content built using yt-dlp. It's designed to be lightweight, self-contained, and easy to use. You set up rules for how to download content from YouTube channels or playlists and it'll do the rest, periodically checking for new content
|
||||||
|
|
||||||
|
name: pinchflat
|
||||||
|
|
||||||
|
services:
|
||||||
|
pinchflat:
|
||||||
|
container_name: pinchflat
|
||||||
|
image: ghcr.io/kieraneglin/pinchflat:latest
|
||||||
|
environment:
|
||||||
|
# Set the timezone to your local timezone
|
||||||
|
- TZ=Europe/Vienna
|
||||||
|
ports:
|
||||||
|
- '8945:8945'
|
||||||
|
volumes:
|
||||||
|
- ./config:/config
|
||||||
|
- ./downloads:/downloads
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy:
|
||||||
|
external: true
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user