File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 2525# is not specified the #AUTHNZ_* lines in .env will be uncommented to
2626# use ports that do not require root permissions.
2727#
28+ # FORCE_BUILD=y If 'y', all ANMS-specific containers will be built locally.
29+ # Otherwise, prebuilt containers will be pulled from ghcr for quicker startup.
30+ #
2831# Note: This script was created with assistance from openai/gpt-oss-120b
2932set -e
3033
@@ -81,8 +84,12 @@ cp docker-compose.no-security-override.yml docker-compose.override.yml
8184./create_volume.sh ./puppet/modules/apl_test/files/anms/tls
8285
8386# Build system
84- ${DOCKER_CMD} compose build
85-
87+ if [[ ${FORCE_BUILD:- } == y ]]; then
88+ ${DOCKER_CMD} compose --profile full --profile dev build
89+ else
90+ ${DOCKER_CMD} compose --profile full --profile dev pull
91+ fi
92+
8693# Start testenv (unless disabled)
8794if [[ ${USE_TESTENV:- } != n ]]; then
8895 ${DOCKER_CMD} compose -f testenv-compose.yml up -d
You can’t perform that action at this time.
0 commit comments