Websoft9 / websoft9

Applications self-hosting platform for running open source, web-based lite PaaS
https://www.websoft9.com
Other
1.58k stars 230 forks source link

Application backups #40

Open chendelin1982 opened 1 year ago

chendelin1982 commented 1 year ago

What type of your feature request?

容器的备份软件:

qiaofeng1227 commented 1 year ago

开源

商业

qiaofeng1227 commented 1 year ago
  1. 存储软件minio

  2. kopia

    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
            - --server-password=SECRET_PASSWORD
        environment:
            # Set repository password
            KOPIA_PASSWORD: "SECRET"
            USER: "User"
        volumes:
            # Mount local folders needed by kopia
            - ./config:/app/config
            - ./cache:/app/cache
            - ./logs:/app/logs
            # Mount local folders to snapshot
            - ./data:/data:ro
            # Mount repository location
            - ./repository:/repository
            # Mount path for browsing mounted snaphots
            - ./tmp:/tmp:shared
  3. bacula demo,bacula doc

  4. borgbackup https://hub.docker.com/r/borgbackup/borg 官方四年没有更新了 epicsoft/borgbackup https://gitlab.com/epicdocker/borgbackup/blob/master/README.md#License 找不到好的web容器