Skip to content

Commit

Permalink
fix: docker compose (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 authored Nov 23, 2023
1 parent f8966b4 commit 5f6f192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const checkDockerInstallation = async () => {
};

const getComposeCommandBase = (dockerComposePath: string, projectDir?: string) => {
return `docker compose -f ${dockerComposePath} --project-directory ${projectDir ?? path.dirname(dockerComposePath)}`;
return `docker-compose -f ${dockerComposePath} --project-directory ${projectDir ?? path.dirname(dockerComposePath)}`;
};
const createComposeCommand =
(action: string) => async (dockerComposePath: string, projectDir?: string, additionalArgs?: string[]) => {
Expand Down

0 comments on commit 5f6f192

Please sign in to comment.