-
-
Notifications
You must be signed in to change notification settings - Fork 0
Frequently asked questions
Niclas Lindstedt edited this page May 14, 2021
·
20 revisions
Use the TZ environment variable.
Backups are first written to /tmp/backup
before moved to the backup folder. If you have enough memory to store your backups temporarily in memory before moving them to their final destination, you can mount a tmpfs
in-memory filesystem at /tmp/backup
to speed things up.
version: '3'
services:
...
backup:
...
tmpfs:
- /tmp/backup:mode=700,uid=1000,gid=1000