mega-ci / static-release-gates (push) Failing after 11s
release-tag / release-image (push) Successful in 6m46s
mega-ci / go-quality (services/control) (push) Successful in 10m7s
mega-ci / go-quality (platform/neuroforge) (push) Successful in 10m20s
mega-ci / go-quality (services/agent) (push) Successful in 11m1s
mega-ci / go-quality (services/knowledge) (push) Successful in 11m13s
mega-ci / docker-build (push) Has been skipped
14 lines
485 B
Bash
Executable File
14 lines
485 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
ENV_FILE=${ENV_FILE:-.env}
|
|
./scripts/preflight.sh
|
|
echo "go-live: pulling immutable registry images"
|
|
docker compose --env-file "$ENV_FILE" pull
|
|
echo "go-live: starting stack"
|
|
docker compose --env-file "$ENV_FILE" up -d --remove-orphans
|
|
echo "go-live: current container state"
|
|
docker compose --env-file "$ENV_FILE" ps
|
|
cat <<'MSG'
|
|
go-live: container start completed. Verify the host-specific smoke gates from docs/GO-LIVE-v1.5.0.md before enabling write automation.
|
|
MSG
|