Files
atc-agents/scripts/deploy.sh
T

8 lines
258 B
Bash
Raw Normal View History

#!/bin/bash
# Deploy Command Center stack on VM304
set -euo pipefail
cd "$(dirname "$0")/.."
[ -f .env ] || { echo "Create .env from config/command-center/.env.example"; exit 1; }
docker compose --env-file .env up -d --build
echo "OK — http://10.0.21.33/"