diff --git a/.gitignore b/.gitignore index d4e3bdf..7244873 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,5 @@ obsidian-livesync/data/ kavita/data/ kavita/manga/ metube/downloads/ +pinchflat/config/ +pinchflat/downloads/ diff --git a/README.md b/README.md index c9a1a66..3809606 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ docker network create --driver bridge proxy - kavita 5003 - mealie 9925 - metube 8088 -- pinchflat +- pinchflat 8945 - netalertx - netdata - demo: https://app.netdata.cloud/spaces/netdata-demo/rooms/all-nodes diff --git a/pinchflat/compose.yml b/pinchflat/compose.yml new file mode 100644 index 0000000..2314b8a --- /dev/null +++ b/pinchflat/compose.yml @@ -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 + \ No newline at end of file