Replies: 1 comment 7 replies
-
|
Hi @OTheNonE , Would the solution not simply be, to write to file rather than pipe? That way you can share the file between containers. I get how piping to restic allows you to not have to write to the filesystem but doing so would also allow you to add checks to make sure the export was successful. Hope this makes sense. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
I have this bash script that backups a SurrealDB database:
This script backups the database via the
surreal exportcommand, and pipes the data to therestic backupcommand via the--stdinand--stdin-filenameflags. Thesurreal exportcommands requires the surreal cli, and is therefore run with docker.How would i migrate this to Backrest? Is it even possible? I'll surely need a
CONDITION_SNAPSHOT_STARThook, but the two problems i see, are:Beta Was this translation helpful? Give feedback.
All reactions