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

136 天前
 a39908646

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

1203 次点击
所在节点    NAS
7 条回复
Greendays
136 天前
可以试试 immich
a39908646
136 天前
@Greendays 大佬,还有别的选择吗?不局限于照片备份啊,能把已备份的文件都删除掉最好
试了下 nextcloud 好像没我说的这功能,只能自己手动删
immich 部署好复杂,萌新手残耍不来呀
Greendays
136 天前
@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
135 天前
@Greendays 好的,谢谢大佬
Misyo
134 天前
Immich 的一个社区整合版本,这个部署简单点
https://github.com/imagegenius/docker-immich/
a39908646
133 天前
@Misyo 谢谢
totoro625
131 天前
MT Photos 也可以,定位更加轻量化(但是要收费,99 元终身,会强制连接外网校验)

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/1004063

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX