-
Hi all, I'm using docker compose and below is a snippet from my compose file. I've also tried including the full path ('/source/shinobi/**/*.mp4') and tried using an exclude file, but nothing seems to force the exclusion of the mp4 files from ending up in the backup. I was hoping that the --verbose flag would shed more light on what commands are actually passed to the container but unfortunately it's not visible in the logs. Am I doing something wrong perhaps?
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
@dolf-s It looks like everything is on one line here. Then the |
Beta Was this translation helpful? Give feedback.
-
It looks that way, but it's the way the copy-paste turned out. I tried it on one line first, without the Later I tried it as per your compose example yml: |
Beta Was this translation helpful? Give feedback.
-
After some trial and error, here is what finally made it work correctly. The trick is not to escape the exclude argument. The syntax below is correct. This is currently not correctly stated under 'configuration options' in the readme.md.
|
Beta Was this translation helpful? Give feedback.
After some trial and error, here is what finally made it work correctly. The trick is not to escape the exclude argument. The syntax below is correct. This is currently not correctly stated under 'configuration options' in the readme.md.
RESTIC_BACKUP_ARGS: --exclude= *.mp4