The tool to back up save data of some game server.
Currently, this is mainly intended for Minecraft but can be used for other games.
Request to support other game is welcome! Please read this section.
get docker image from github packages
docker pull ghcr.io/anatawa12/game-save-backuper
create config file. See Config format.
Note that you must not set backup_dir
and save_dir
.
bash
docker run \
-v '/path/to/your/save/dir:/save' \
-v '/path/to/your/backups/dir:/backups' \
ghcr.io/anatawa12/game-save-backuper
to start daemon.
```yaml
preset: minecraft
save_dir: /path
backup_dir: /path
backups: # name of backup directory - name: 5min # interval of backup. # you can choose from: # 5, 10, 15, 20, 30 minutely # 1, 2, 4, 6, 12 hourly (every 0 minute) # daily (every 0:00 UTC) # weekly (every monday 0:00 UTC) # 1, 2, 3, 4, 6 monthly (every 1st 0:00 UTC) # yearly (every Jan 1st 0:00 UTC) interval: 5 minutely # the count of backups will be saved. # if more than this number of backups are found, # the oldest backup will be removed max_backups: 12 ```
I think it make this better to support other games. I don't have enough time to find which game is good to support and to find game information. That's why it's welcome to send me a request to support other game. To request, please open a new issue! If possible, please let me know the following information to make it easy to support new game.