9 lines
137 B
Bash
9 lines
137 B
Bash
#!/bin/bash
|
|
|
|
SERVICE_NAME="mc-vanilla"
|
|
|
|
echo "🔄 Restartuji server..."
|
|
docker compose up -d --force-recreate --build "$SERVICE_NAME"
|
|
|
|
|