使用kopia加密备份照片到网盘

之前使用的是Duplicati来加密备份,网盘走的webdav协议,但是不知道是由于照片太多还是什么的缘故,无法备份成功。备份例如数据库以及配置文件这种没有遇到问题。于是查找其他方案。由于我的要求是需要webui界面,于是找到了 kopia。按照官方提供的docker方案 version: '3.7' services: kopia: image: kopia/kopia:latest hostname: Hostname container_name: Kopia restart: unless-stopped ports: - 51515:51515 # Setup the server that provides the web gui command: - server - start - --disable-csrf-token-checks - --insecure - --address=0.0.0.0:51515 - --server-username=USERNAME ...