No description
  • Shell 78.9%
  • Dockerfile 21.1%
Find a file
paspo a0c4704f57
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (push) Successful in 34s
fix missing env
2026-06-27 12:35:29 +02:00
.forgejo/workflows initial import 2026-06-27 12:11:17 +02:00
rootfs fix missing env 2026-06-27 12:35:29 +02:00
.gitignore initial import 2026-06-27 12:11:17 +02:00
docker-compose-sample.yaml initial import 2026-06-27 12:11:17 +02:00
Dockerfile added sftp 2026-06-27 12:30:59 +02:00
LICENSE initial import 2026-06-27 12:11:17 +02:00
README.md initial import 2026-06-27 12:11:17 +02:00
renovate.json initial import 2026-06-27 12:11:17 +02:00

borg store

Borg/Borgmatic store (via ssh)

usage

Use this docker-compose.yaml

services:
  borgstore:
    image: docker.asperti.com/paspo/borgstore
    ports:
      - 2222:22
    volumes:
      - ./data:/data
      - ./ssh:/ssh # add authorized_keys file here
    environment:
      USERNAME: myuser # default: borgstore
      GROUPNAME: mygroup # default: borgstore
      SSH_PUBKEY: ssh-rsa AAAAB3NzaC....  # optional
      PUID: 1000 # default: 1000
      PGID: 1000 # default: 1000
      TZ: Etc/UTC  # default: Etc/UTC

The /data directory and its contents will be chowned to $PUID:$PGID and chmodded to 0755 for directories and 0644 for files at container start.

You can add an optional SSH public key by using the environment variable SSH_PUBKEY, this variable will be used to create the authorized_keys file if it doesn't exists.