From 02c946dad80da034620ab06f70e39c43f3d137e6 Mon Sep 17 00:00:00 2001 From: Nick Yeoman Date: Wed, 22 Jan 2025 14:30:53 -0800 Subject: [PATCH] added video dpulicate finder to cookbooks --- videoduplicatefinder/README.md | 6 ++++++ videoduplicatefinder/docker-compose.yml | 8 ++++++++ videoduplicatefinder/sample-extends.yml | 6 ++++++ videoduplicatefinder/sample.env | 4 ++++ 4 files changed, 24 insertions(+) create mode 100644 videoduplicatefinder/README.md create mode 100644 videoduplicatefinder/docker-compose.yml create mode 100644 videoduplicatefinder/sample-extends.yml create mode 100644 videoduplicatefinder/sample.env diff --git a/videoduplicatefinder/README.md b/videoduplicatefinder/README.md new file mode 100644 index 0000000..8ff8b04 --- /dev/null +++ b/videoduplicatefinder/README.md @@ -0,0 +1,6 @@ +# Video Duplicate Finder + +## Links + +* [github]https://github.com/0x90d/videoduplicatefinder() +* [dockerhub](https://hub.docker.com/r/jlesage/video-duplicate-finder) diff --git a/videoduplicatefinder/docker-compose.yml b/videoduplicatefinder/docker-compose.yml new file mode 100644 index 0000000..40c9f11 --- /dev/null +++ b/videoduplicatefinder/docker-compose.yml @@ -0,0 +1,8 @@ +services: + video-duplicate-finder: + image: jlesage/video-duplicate-finder:latest + ports: + - "5800:5800" + volumes: + - ${VOL_PATH:-./data}/video-duplicate-finder:/config:rw + - ${VDF_VOL_STORAGE_PATH}:/storage:rw diff --git a/videoduplicatefinder/sample-extends.yml b/videoduplicatefinder/sample-extends.yml new file mode 100644 index 0000000..0ed39e9 --- /dev/null +++ b/videoduplicatefinder/sample-extends.yml @@ -0,0 +1,6 @@ +services: + + video-duplicate-finder: + extends: + file: ${COOKBOOK}/videoduplicatefinder/docker-compose.yml + service: video-duplicate-finder diff --git a/videoduplicatefinder/sample.env b/videoduplicatefinder/sample.env new file mode 100644 index 0000000..c0acc94 --- /dev/null +++ b/videoduplicatefinder/sample.env @@ -0,0 +1,4 @@ +COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks +VOL_PATH=./data +TZ="America/Vancouver" +COMPOSE_PROJECT_NAME=stash \ No newline at end of file