Go to file
Einar Forselv 0e7d5308db Entrypoint working from cron and command line 2019-04-15 17:26:04 +02:00
restic_volume_backup Split up modules 2019-04-15 17:25:42 +02:00
tests Set up tests dir 2019-04-15 16:24:21 +02:00
.dockerignore Update .dockerignore 2019-04-15 16:59:38 +02:00
.gitignore Ignore build files 2019-04-15 17:03:33 +02:00
Dockerfile Build new package 2019-04-15 16:24:57 +02:00
README.md Basic test instructions 2019-04-15 16:59:53 +02:00
crontab Major repo reorganizaion 2019-04-15 16:16:06 +02:00
docker-compose.yaml Compose file for dev 2019-04-15 17:04:16 +02:00
entrypoint.sh Major repo reorganizaion 2019-04-15 16:16:06 +02:00
restic-volume-backup Entrypoint working from cron and command line 2019-04-15 17:26:04 +02:00
restic_volume_backup.env Basic env file 2019-04-15 17:03:47 +02:00
setup.py Major repo reorganizaion 2019-04-15 16:16:06 +02:00

README.md

restic-volume-backup

WORK IN PROGRESS

Backup using using https://restic.net/ for a docker-compose setup.

Automatically detects and backs up volumes in a docker-compose setup. This includes both host mapped volumes and actual docker volumes.

  • Cron triggers backup
  • Volumes for all running containers are backed up

Configuration

Required env variables for restic:

RESTIC_REPOSITORY
RESTIC_PASSWORD

Backend specific env vars : https://restic.readthedocs.io/en/stable/040_backup.html#environment-variables

Example compose setup:

version: '3'
services:
  backup:
    build: restic-volume-backup
    environment:
      - RESTIC_REPOSITORY=<whatever restic supports>
      - RESTIC_PASSWORD=hopefullyasecturepw
    env_file:
      - some_other_vars.env
    volumes:
      - /var/run/docker.sock:/tmp/docker.sock:ro
  example:
    image: some_image
    # Enable volume backup with label
    labels:
      restic-volume-backup.enabled: true
    # These volumes will be backed up
    volumes:
      # Docker volume
      - media:/srv/media
      # Host map
      - /srv/files:/srv/files

volumes:
  media:

Include

  example:
    image: some_image
    labels:
      restic-volume-backup.enabled: true
      restic-volume-backup.include: "files,data"
    volumes:
      # Source don't match include filter. No backup.
      - media:/srv/media
      # Matches include filter
      - files:/srv/files
      - /srv/data:/srv/data

volumes:
  media:
  files:

Exclude:

  example:
    image: some_image
    labels:
      restic-volume-backup.enabled: true
      restic-volume-backup.exclude: "media"
    volumes:
      # Excluded by filter
      - media:/srv/media
      # Backed up
      - files:/srv/files
      - /srv/data:/srv/data

volumes:
  media:
  files:

Running Tests

python setup.py develop
pip install -r tests/requirements.txt
pytest tests