mirror of
https://github.com/Frail7487Real/laughing-spork.git
synced 2024-11-13 22:34:56 -05:00
finally add toBackup
instead of archiving only minecraft
This commit is contained in:
parent
03b14c5190
commit
296f2764ca
2 changed files with 7 additions and 6 deletions
6
.github/workflows/runglobal.yml
vendored
6
.github/workflows/runglobal.yml
vendored
|
@ -83,10 +83,10 @@ jobs:
|
|||
tar xf archive.tar.gz
|
||||
rm -rf archive.tar.gz
|
||||
|
||||
cd minecraft
|
||||
cd toBackup/minecraft
|
||||
else
|
||||
mkdir /mnt/globalData/minecraft
|
||||
cd /mnt/globalData/minecraft
|
||||
mkdir -p /mnt/globalData/toBackup/minecraft
|
||||
cd /mnt/globalData/toBackup/minecraft
|
||||
wget -O docker-compose.yml https://raw.githubusercontent.com/CeciliaKelley33Mm/global/refs/heads/master/minecraft-compose.yml
|
||||
fi
|
||||
docker compose up -d &
|
||||
|
|
7
loop.sh
7
loop.sh
|
@ -105,7 +105,7 @@ check() {
|
|||
if [[ "$IS_GLOBAL" == "true" ]]; then
|
||||
command+="-f \"inputs[oldTailscaleHostname]=$hostname\""
|
||||
|
||||
cd /mnt/globalData/minecraft
|
||||
cd /mnt/globalData/toBackup/minecraft
|
||||
|
||||
timeLeft=30
|
||||
|
||||
|
@ -120,13 +120,14 @@ check() {
|
|||
done
|
||||
|
||||
# not stopping the server would cause problems
|
||||
# like world files aren't latest or even file corruptions
|
||||
# like new world files not getting written
|
||||
# or even file corruptions
|
||||
docker compose down
|
||||
|
||||
cd /mnt/globalData
|
||||
|
||||
# sudo is necessary because we run minecraft in a docker container
|
||||
sudo tar cf archive.tar.gz minecraft/
|
||||
sudo tar cf archive.tar.gz toBackup/
|
||||
|
||||
serve -p 5000 &
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue