Immich – 高性能自托管照片和视频备份解决方案,直接从您的手机自行托管照片和视频备份
version: "2.1"
services:
immich:
image: ghcr.io/imagegenius/immich:latest
container_name: immich
environment:
- PUID=1026
- PGID=101
- TZ=Asia/Shanghai
- DB_HOSTNAME=192.168.1.x
- DB_USERNAME=postgres
- DB_PASSWORD=postgres
- DB_DATABASE_NAME=immich
- REDIS_HOSTNAME=192.168.1.x
- DISABLE_MACHINE_LEANRNING=false
- DISABLE_TYPESENSE=false
- DB_PORT=15432
- REDIS_PORT=16379
- REDIS_PASSWORD=
- CUDA_ACCELERATION=false
volumes:
- /volume1/docker/immich/config:/config
- /volume1/docker/immich/photos:/photos
- /volume1/docker/immich/machine:/config/machine-learning
ports:
- 9666:8080
restart: unless-stopped
redis:
image: redis
ports:
- 16379:6379
container_name: redis
postgres14:
image: postgres:14
ports:
- 15432:5432
container_name: postgres14
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: immich
volumes:
- /volume1/docker/immich/db:/var/lib/postgresql/data