分享一个开源强大的图片视频管理同步备份工具immich

immich 是一个高性能的自托管(self-hosted)解决方案,用于管理和存储照片和视频。
immich 提供了丰富的功能,包括上传和查看视频和照片、防止资产重复、选择性相册备份、多用户支持、相册和共享相册、元数据查看、搜索功能、管理功能、后台备份、虚拟滚动、OAuth 支持、API 密钥、LivePhoto/MotionPhoto 备份和播放、360 度图像显示、用户定义的存储结构、公共分享、归档和收藏、全球地图、面部识别和聚类、回忆(多年前)、离线支持、只读画廊、堆叠照片等。
immich支持docker,docker-compose.yml
#
# WARNING: Make sure to use the docker-compose.yml of the current release:
#
# https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
#
# The compose file on main may not be compatible with the latest release.
#
name: immich
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
# extends:
# file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
volumes:
# Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
ports:
- 2283:3001
depends_on:
- redis
- database
restart: always
...点击查看剩余70%
网友评论