restic-123pan 0.2.2

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
services:
  restic-123pan:
    build:
      context: .
    image: ghcr.io/gaoyifan/restic-123pan:latest
    container_name: restic-123pan
    restart: unless-stopped
    network_mode: host
    environment:
      - PAN123_CLIENT_ID=${PAN123_CLIENT_ID}
      - PAN123_CLIENT_SECRET=${PAN123_CLIENT_SECRET}
      - PAN123_REPO_PATH=${PAN123_REPO_PATH:-/restic-backup}
      - LISTEN_ADDR=${LISTEN_ADDR:-0.0.0.0:8000}
      - RUST_LOG=${RUST_LOG:-info}
    volumes:
      - ./config:/app/config