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