mirror of
https://github.com/YuzuZensai/palworld-server-docker.git
synced 2026-01-30 12:22:57 +00:00
@@ -180,6 +180,8 @@ docker exec palworld-server backup
|
|||||||
|
|
||||||
This will create a backup at `/palworld/backups/`
|
This will create a backup at `/palworld/backups/`
|
||||||
|
|
||||||
|
The server will run a save before the backup if rcon is enabled.
|
||||||
|
|
||||||
## Editing Server Settings
|
## Editing Server Settings
|
||||||
|
|
||||||
When the server starts, a `PalWorldSettings.ini` file will be created in the following location: `<mount_folder>/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini`
|
When the server starts, a `PalWorldSettings.ini` file will be created in the following location: `<mount_folder>/Pal/Saved/Config/LinuxServer/PalWorldSettings.ini`
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ "${RCON_ENABLED}" = true ]; then
|
||||||
|
rcon-cli save
|
||||||
|
fi
|
||||||
|
|
||||||
DATE=$(date +"%Y-%m-%d_%H-%M-%S")
|
DATE=$(date +"%Y-%m-%d_%H-%M-%S")
|
||||||
FILE_PATH="/palworld/backups/palworld-save-${DATE}.tar.gz"
|
FILE_PATH="/palworld/backups/palworld-save-${DATE}.tar.gz"
|
||||||
cd /palworld/Pal/ || exit
|
cd /palworld/Pal/ || exit
|
||||||
|
|||||||
Reference in New Issue
Block a user