4 Commits

Author SHA1 Message Date
cjones 1e82798a3b Upgrade immich to v1.138.0 2025-10-03 17:03:00 -04:00
cjones 92653301a6 Upgrade immich to v137.0 2025-10-03 16:53:05 -04:00
cjones f2f50600fc Fix bind mount for /media directory 2025-10-03 16:37:46 -04:00
cjones 391bb529fc Add compose file for MakeMKV 2025-09-22 22:46:38 -04:00
3 changed files with 16 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ DB_DATA_LOCATION=/mnt/storage/appdata/immich/postgres
TZ=America/New_York
# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=release
IMMICH_VERSION=v1.138.0
# Connection secret for postgres. You should change it to a random password
DB_PASSWORD=postgres
+4 -1
View File
@@ -2,13 +2,16 @@ services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
user: 1000:1000
network_mode: 'host'
volumes:
- /mnt/storage/appdata/jellyfin/config:/config
- /mnt/storage/appdata/jellyfin/config/web-config.json:/jellyfin/jellyfin-web/config.json
- /mnt/storage/appdata/jellyfin/cache:/cache
- /mnt/cygnus:/cygnus:ro
- type: bind
source: /mnt/storage/appdata/jellyfin/media
target: /media
read_only: true
restart: 'unless-stopped'
# Optional - alternative address used for autodiscovery
# environment:
+11
View File
@@ -0,0 +1,11 @@
services:
makemkv:
image: jlesage/makemkv
ports:
- "5801:5800"
volumes:
- "/home/cjones/makemkv:/config:rw"
- "/home/cjones/makemkv/storage:/storage:ro"
- "/home/cjones/makemkv/output:/output:rw"
devices:
- "/dev/sr0:/dev/sr0"