diff --git a/immich/README.md b/immich/README.md index 0961b90..d6c2c9d 100644 --- a/immich/README.md +++ b/immich/README.md @@ -12,6 +12,12 @@ Reverse Poxy Port: 2283 1. Place your files in the immich-import directory. 1. run the [Job](http://localhost:8000/admin/jobs-status) External Libraries +## Upgrades + +The version tags can be confusing here. +I go to the releases page: https://github.com/immich-app/immich/releases +and then bump to that release: IMMICH_IMAGE=ghcr.io/immich-app/immich-server:v1.143.1 + ## Note If the env file doesn't work after a change, try running ```docker compose up -d --force-recreate```. diff --git a/immich/sample.env b/immich/sample.env index ff6c104..9f3488d 100644 --- a/immich/sample.env +++ b/immich/sample.env @@ -16,7 +16,7 @@ IMMICH_DB_DATABASE_NAME=immich IMMICH_REDIS_HOSTNAME=immich-redis # REDIS -REDIS_IMAGE=docker.io/redis:6.2-alpine@sha256:eaba718fecd1196d88533de7ba49bf903ad33664a92debb24660a922ecd9cac8 +REDIS_IMAGE=redis:6.2.19-alpine # POSTGRES -POSTGRES_IMAGE=docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0 \ No newline at end of file +POSTGRES_IMAGE=tensorchord/pgvecto-rs:pg14-v0.2.0 \ No newline at end of file diff --git a/videoduplicatefinder/.env b/videoduplicatefinder/.env index db3fd49..add2936 100644 --- a/videoduplicatefinder/.env +++ b/videoduplicatefinder/.env @@ -1,4 +1,3 @@ -COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks VOL_PATH=./data TZ="America/Vancouver" -COMPOSE_PROJECT_NAME=stash +COMPOSE_PROJECT_NAME="dupcheck" diff --git a/videoduplicatefinder/README.md b/videoduplicatefinder/README.md index 8ff8b04..27ba7a5 100644 --- a/videoduplicatefinder/README.md +++ b/videoduplicatefinder/README.md @@ -2,5 +2,11 @@ ## Links -* [github]https://github.com/0x90d/videoduplicatefinder() +* [github](https://github.com/0x90d/videoduplicatefinder) * [dockerhub](https://hub.docker.com/r/jlesage/video-duplicate-finder) + + +## How To use + +Change the volumes to what you want. +Storage is where it will search diff --git a/videoduplicatefinder/docker-compose.yml b/videoduplicatefinder/docker-compose.yml index 40c9f11..13c39b0 100644 --- a/videoduplicatefinder/docker-compose.yml +++ b/videoduplicatefinder/docker-compose.yml @@ -4,5 +4,5 @@ services: ports: - "5800:5800" volumes: - - ${VOL_PATH:-./data}/video-duplicate-finder:/config:rw - - ${VDF_VOL_STORAGE_PATH}:/storage:rw + - ${VOL_PATH:-./data}/video-duplicate-finder-config:/config:rw + - ${VDF_VOL_STORAGE_PATH:-./data/storage}:/storage:rw