We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8966b4 commit 5f6f192Copy full SHA for 5f6f192
src/utils/docker.ts
@@ -16,7 +16,7 @@ const checkDockerInstallation = async () => {
16
};
17
18
const getComposeCommandBase = (dockerComposePath: string, projectDir?: string) => {
19
- return `docker compose -f ${dockerComposePath} --project-directory ${projectDir ?? path.dirname(dockerComposePath)}`;
+ return `docker-compose -f ${dockerComposePath} --project-directory ${projectDir ?? path.dirname(dockerComposePath)}`;
20
21
const createComposeCommand =
22
(action: string) => async (dockerComposePath: string, projectDir?: string, additionalArgs?: string[]) => {
0 commit comments