How to bind only saves directories? #328
-
I want to store my saves, blueprints, backups, and all other files that don’t require fast disk access on my NAS using NFS. For everything else, I plan to use a fast SSD on the host itself. In various examples, I’ve noticed recommendations to bind the entire So my questions are:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi, no you're overthinking this. If you absolutely want to split out the saves directory, simply modify your Docker config to bind |
Beta Was this translation helpful? Give feedback.
-
Hi @MaksimShakavin . I don't know what's your exact purpose here, but supposing you have the same intent I had, which is to have a backup (or, even better, several) in case anything happens to the remote host, just wanted to mention that I wrote a short script which tar.gzes the /server directory, then stores it on my NAS incrementally with rsync. It is croned twice a day. |
Beta Was this translation helpful? Give feedback.
Hi, no you're overthinking this.
If you absolutely want to split out the saves directory, simply modify your Docker config to bind
/config
to your existing path, but then also bind
/config/saves` to your separate path.