Websoft9 / docker-library

Docker Compose examples of selfhosted FOSS based on official image, just run it.
https://www.websoft9.com
Other
31 stars 14 forks source link

create new application for [kopia] #559

Open chendelin1982 opened 5 months ago

chendelin1982 commented 5 months ago

What type of your feature request?

Kopia have cli and gui version, we use gui version

chendelin1982 commented 5 months ago

What this?

    volumes:
      - kopia_config:/app/config
      - kopia_cache:/app/cache
      - kopia_logs:/app/logs
      - kopia_data:/data:ro
      - kopia_repository:/repository
      - kopia_tmp:/tmp:shared

https://kopia.io/docs/installation/#docker-images

chendelin1982 commented 5 months ago
zhang-mtdxx commented 5 months ago

"/path/to/tmp/dir:/tmp:shared" kopia可以将备份挂载在/tmp目录下,这样通过映射可以在宿主机通过常规方式查看备份文件

image image

要使这部分功能可用,可能需要修改docker-compose.yml

  1. 给高权限privileged: true
  2. 映射tmp目录不能使用volumes,需要使用本地路径
qiaofeng1227 commented 4 months ago

image

qiaofeng1227 commented 4 months ago

https://github.com/kopia/kopia/issues/3133