Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit e931768

Browse files
authored
fix: Use correct name for --detach param (#1140)
`-d` is valid and so is `--detach`. But the `--d` that was used here (with two hyphens) only worked on some machines. I believe that was autocorrected to `--detach` on those machines because it was a unique prefix, as I was also able to use `--det`. This might be a matter of versions, or of `docker-compose` vs. `docker compose` shims, or just difference by OS. But in any case we should use a documented version of the flag.
1 parent e768331 commit e931768

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ dev.up.with-watchers.%: ## Bring up services and their dependencies + asset watc
302302
dev.up.without-deps: _expects-service-list.dev.up.without-deps
303303

304304
impl-dev.up.without-deps.%: dev.check-memory ## Bring up services by themselves.
305-
docker-compose up --d --no-deps $$(echo $* | tr + " ")
305+
docker-compose up -d --no-deps $$(echo $* | tr + " ")
306306

307307
dev.up.without-deps.%: ## Bring up services by themselves.
308308
@scripts/send_metrics.py wrap "dev.up.without-deps.$*"

0 commit comments

Comments
 (0)