This commit is contained in:
2025-10-02 00:51:42 +02:00
commit 070b02ea62
16 changed files with 298 additions and 0 deletions

10
start.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
SERVICE_NAME="mc-vanilla"
if docker ps --format '{{.Names}}' | grep -q "$SERVICE_NAME"; then
echo "✅ Server už běží."
else
echo "▶️ Spouštím server..."
docker compose up -d --force-recreate "$SERVICE_NAME"
fi