docker-compose.yml 309 B

12345678910111213
  1. version: '2'
  2. services:
  3. restic:
  4. image: restic/restic
  5. container_name: restic
  6. hostname: restic
  7. restart: on-failure:3
  8. volumes:
  9. - ${BACKUP_SOURCE}:/mnt/source:ro
  10. - ./data/restic:/root/restic:ro
  11. env_file: .env
  12. #entrypoint: /bin/sh
  13. entrypoint: /root/restic/entry.sh