restic-123pan 0.3.1

Restic REST API backend server using 123pan cloud storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
services:
  restic-123pan:
    build:
      context: .
    image: ghcr.io/gaoyifan/restic-123pan:latest
    container_name: restic-123pan
    restart: unless-stopped
    network_mode: host
    environment:
      - PAN123_USERNAME=${PAN123_USERNAME}
      - PAN123_PASSWORD=${PAN123_PASSWORD}
      - PAN123_REPO_PATH=${PAN123_REPO_PATH:-/restic-backup}
      - LISTEN_ADDR=${LISTEN_ADDR:-0.0.0.0}
      - LISTEN_PORT=${LISTEN_PORT:-8000}
      - RUST_LOG=${RUST_LOG:-info}
      - DB_PATH=${DB_PATH:-cache/cache-123pan.db}
    volumes:
      - ./cache:/app/cache