V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
a39908646
V2EX  ›  NAS

求问有什么 docker 应用可以备份后释放本地空间?

  •  
  •   a39908646 · 122 天前 · 1188 次点击
    这是一个创建于 122 天前的主题,其中的信息可能已经有所发展或是发生改变。

    主要是用来备份照片和视频 想找个备份的应用,完成后能一键删除已经备份的文件 就像 Google photos 那样

    7 条回复    2024-01-02 16:20:01 +08:00
    Greendays
        1
    Greendays  
       122 天前
    可以试试 immich
    a39908646
        2
    a39908646  
    OP
       122 天前
    @Greendays 大佬,还有别的选择吗?不局限于照片备份啊,能把已备份的文件都删除掉最好
    试了下 nextcloud 好像没我说的这功能,只能自己手动删
    immich 部署好复杂,萌新手残耍不来呀
    Greendays
        3
    Greendays  
       122 天前
    @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:
    a39908646
        4
    a39908646  
    OP
       121 天前 via Android
    @Greendays 好的,谢谢大佬
    Misyo
        5
    Misyo  
       120 天前 via iPhone   ❤️ 1
    Immich 的一个社区整合版本,这个部署简单点
    https://github.com/imagegenius/docker-immich/
    a39908646
        6
    a39908646  
    OP
       119 天前
    @Misyo 谢谢
    totoro625
        7
    totoro625  
       117 天前
    MT Photos 也可以,定位更加轻量化(但是要收费,99 元终身,会强制连接外网校验)
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   4284 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 28ms · UTC 10:13 · PVG 18:13 · LAX 03:13 · JFK 06:13
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.