Files
jbergner 8c67c7a7fa
All checks were successful
release-tag / release-image (push) Successful in 10m52s
Update 1.5.0
2026-08-27 07:51:39 +02:00

14 lines
485 B
Bash

#!/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