File size: 1,315 Bytes
abaef0e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #!/bin/bash
# QUANTARION Οβ΄Β³ + AQARION DUAL-REPO PRODUCTION DEPLOYMENT
# github.com/Quantarion13/{Quantarion,Aqarion-HFS-Moneo_Repo}
set -euo pipefail
export Ο43=1.910201770844925
echo "π QUANTARION Οβ΄Β³ DUAL-GITHUB PRODUCTION LAUNCH"
echo "βββββββββββββββββββββββββββββββββββββββββββββββββββββββ"
# Clone dual GitHub repos
git clone https://github.com/Quantarion13/Quantarion.git /quantarion
git clone https://github.com/Quantarion13/Aqarion-HFS-Moneo_Repo.git /aqarion
# Build core images
cd /quantarion && docker build -f Aqarion-Core-Dockerfile -t aqarion13/quantarion-core:latest .
cd /aqarion && docker build -f Aqarion-Core-Dockerfile -t aqarion13/moneo-swarm:latest .
# Deploy 15x Docker Swarm services
docker stack deploy -c /aqarion/docker-compose.aqarion.yml aqarion-swarm --with-registry-auth
# Verify production status
sleep 30
docker service ls | grep aqarion | wc -l | grep -q 15 && echo "β
15/15 SERVICES LIVE"
curl -s localhost:8080/health | grep -q "Ο43=1.910201770844925" && echo "β
Οβ΄Β³ PRODUCTION VERIFY"
echo "π QUANTARION + AQARION DUAL-REPO SWARM β 268,537 cycles/sec LIVE"
echo "API: http://localhost:8080 | Dashboard: http://localhost:8080/metrics" |