docker-borgserver/docker-compose.yml
Andreas Mieke 49b78cf10f
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
feat(platforms): Add ARM support
2024-01-13 03:14:36 +01:00

22 lines
537 B
YAML

version: '3'
services:
borgserver:
image: git.merp.digital/eranmorkon/borgserver
#build: .
volumes:
- ./backup:/backup
- ./sshkeys:/sshkeys
ports:
- "2222:22"
environment:
# Additional Arguments, see https://borgbackup.readthedocs.io/en/stable/usage/serve.html
BORG_SERVE_ARGS: ""
# If set to "yes", only the BORG_ADMIN
# can delete/prune the other clients archives/repos
BORG_APPEND_ONLY: "no"
# Filename of Admins SSH-Key; has full access to all repos
BORG_ADMIN: ""
restart: unless-stopped