Initial commit: minecraft server setup

Tracks docker-compose config, server scripts, and server properties.
Runtime data (world, libraries, versions, logs, jar), credentials, and
backup snapshots are gitignored.
This commit is contained in:
2026-04-21 20:33:22 +02:00
commit ad654d145a
12 changed files with 154 additions and 0 deletions

11
start.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
set -e
cd "$(dirname "$0")"
docker compose up -d
nohup ./portforward >> portforward.log 2>&1 &
echo $! > portforward.pid
echo "minecraft started; tunnel PID $(cat portforward.pid) (logs: portforward.log)"