Skip to content

Commit 5f6f192

Browse files
authored
fix: docker compose (#85)
1 parent f8966b4 commit 5f6f192

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/docker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const checkDockerInstallation = async () => {
1616
};
1717

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

0 commit comments

Comments
 (0)