Skip to content

Commit

Permalink
Merge pull request #18 from bbc/philipn-update-repos
Browse files Browse the repository at this point in the history
Regenerate static files
  • Loading branch information
philipnbbc authored Aug 14, 2024
2 parents 9aec811 + 5fad41a commit e7317bf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion static-commontooling/make/include/core.mk
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ endif

# Create simple aliases for running some useful tools
DOCKER?=docker
DOCKER_RUN?=${DOCKER} run --pull always --rm
# --pull supports "always", "missing" (pull from remote if not in the local cache) and "never" (don't pull from remote)
DOCKER_RUN_PULL?=always
DOCKER_RUN?=${DOCKER} run --pull ${DOCKER_RUN_PULL} --rm
J2?=$(DOCKER_RUN) -v $(project_root_dir):/data:ro -w /data/$(reldir) ${J2CLI_DOCKER_CONTAINER}:${J2CLI_DOCKER_LABEL}

# Use docker compose V1 if present, else use the docker plugin for V2
Expand Down

0 comments on commit e7317bf

Please sign in to comment.