Skip to content

Commit

Permalink
Merge pull request #4224 from systeminit/jkeiser/docker-compose
Browse files Browse the repository at this point in the history
Use docker-compose from nix instead of "docker compose"
  • Loading branch information
jkeiser authored Jul 24, 2024
2 parents 0b8a344 + 5361edd commit aaff729
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions dev/healthcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ def detect_docker_engine() -> int:
def detect_docker_compose() -> int:
result = subprocess.run(
[
"docker",
"compose",
"docker-compose",
"version",
],
capture_output=True,
Expand Down
6 changes: 2 additions & 4 deletions prelude-si/tilt.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ def tilt_docker_compose_pull_impl(ctx: AnalysisContext) -> list[[DefaultInfo, Ru
)

run_cmd_args = cmd_args([
"docker",
"compose",
"docker-compose",
"--file",
docker_compose_file,
"pull",
Expand Down Expand Up @@ -88,8 +87,7 @@ def tilt_docker_compose_stop_impl(ctx: AnalysisContext) -> list[[DefaultInfo, Ru
)

run_cmd_args = cmd_args([
"docker",
"compose",
"docker-compose",
"--file",
docker_compose_file,
"stop",
Expand Down

0 comments on commit aaff729

Please sign in to comment.