update monitor

This commit is contained in:
2026-01-04 16:28:26 +01:00
parent 16bbc930a8
commit 093a4e492e
2 changed files with 35 additions and 0 deletions

14
restart_services.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# Configuration
APP_DIR="/home/asf/testarena_backend"
echo "Restarting services in $APP_DIR..."
cd $APP_DIR || { echo "Directory $APP_DIR not found"; exit 1; }
# Restart containers without rebuilding
echo "Restarting Docker containers..."
docker-compose restart
echo "Services restarted successfully."