主要是用来备份照片和视频 想找个备份的应用,完成后能一键删除已经备份的文件 就像 Google photos 那样
1
Greendays 309 天前
可以试试 immich
|
2
a39908646 OP |
3
Greendays 309 天前
@a39908646 会用 Docker-compose 的话,参考一下这个,把这个配置文件放到一个任意目录,在该目录下执行 docker-compose up 就可以了
version: "3.8" # # 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} command: [ "start.sh", "immich" ] volumes: - ./upload:/usr/src/app/upload # - ./etc/localtime:/etc/localtime:ro env_file: - .env ports: - 2283:3001 depends_on: - redis - database - typesense restart: always immich-microservices: container_name: immich_microservices image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} # extends: # file: hwaccel.yml # service: hwaccel command: [ "start.sh", "microservices" ] volumes: - ./upload:/usr/src/app/upload # - ./etc/localtime:/etc/localtime:ro env_file: - ./.env depends_on: - redis - database - typesense restart: always immich-machine-learning: container_name: immich_machine_learning image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} volumes: - ./model-cache:/cache env_file: - ./.env restart: always typesense: container_name: immich_typesense image: typesense/typesense:0.24.1@sha256:9bcff2b829f12074426ca044b56160ca9d777a0c488303469143dd9f8259d4dd environment: - TYPESENSE_API_KEY=${TYPESENSE_API_KEY} - TYPESENSE_DATA_DIR=/data # remove this to get debug messages - GLOG_minloglevel=1 volumes: - ./tsdata:/data restart: always redis: container_name: immich_redis image: redis:6.2-alpine@sha256:80cc8518800438c684a53ed829c621c94afd1087aaeb59b0d4343ed3e7bcf6c5 restart: always database: container_name: immich_postgres image: postgres:14-alpine@sha256:50d9be76e9a90da4c781554955e0ffc79d9d5c4226838e64b36aacc97cbc35ad env_file: - ./.env environment: POSTGRES_PASSWORD: 123456 POSTGRES_USER: postgres POSTGRES_DB: immich volumes: - ./pgdata:/var/lib/postgresql/data restart: always volumes: pgdata: model-cache: tsdata: |
5
Misyo 307 天前 via iPhone 1
Immich 的一个社区整合版本,这个部署简单点
https://github.com/imagegenius/docker-immich/ |
7
totoro625 304 天前
MT Photos 也可以,定位更加轻量化(但是要收费,99 元终身,会强制连接外网校验)
|