Jenkins builds from apps.json, pushes to Forgejo registry, and archives Coolify image tags; compose installs all apps on first site creation.
9 lines
180 B
Bash
Executable file
9 lines
180 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# shellcheck source=/dev/null
|
|
source .ci-bin/ci-env.sh
|
|
|
|
REF="$(cat dist/image-reference.txt)"
|
|
$DOCKER pull "$REF"
|
|
echo "Verified pull: $REF"
|