File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,15 @@ noTargetGuard:
44COMPOSE_PULL_BUSYBOX = docker compose pull busybox
55COMPOSE_RUN_BUSYBOX = docker compose run --rm busybox
66COMPOSE_BUILD_BASE = docker compose build base
7- COMPOSE_RUN_CI = COMPOSE_ENVFILE=$(ENVFILE ) docker compose run --rm ci
8- COMPOSE_UP_CI = COMPOSE_ENVFILE=$(ENVFILE ) docker compose up ci -d
9- COMPOSE_RUN_DEV = COMPOSE_ENVFILE=$(ENVFILE ) docker compose run --service-ports --rm dev
7+ # COMPOSE_RUN_CI = COMPOSE_ENVFILE=$(ENVFILE) docker compose run --rm ci
8+ COMPOSE_RUN_CI = COMPOSE_ENVFILE=.env docker compose run --rm ci
9+ COMPOSE_UP_CI = COMPOSE_ENVFILE=.env docker compose up ci -d
10+ COMPOSE_RUN_DEV = COMPOSE_ENVFILE=.env docker compose run --service-ports --rm dev
1011COMPOSE_UP_DEV = COMPOSE_ENVFILE=$(ENVFILE ) docker compose up dev
1112
1213ASTRO_URL ?= http://ci:4321
13- ENVFILE ?= $(if $(wildcard .env) ,.env,env.template)
14+ # ENVFILE ?= $(if $(wildcard .env),.env,env.template)
15+ ENVFILE ?= env.template
1416
1517ciTest : clean envfile deps check build preview testPreview clean
1618ciDeploy : clean envfile deps check build preview testPreview deploy clean
You can’t perform that action at this time.
0 commit comments