Open alex-Symbroson opened 8 months ago
@alex-Symbroson Thanks for reporting!
Getting the same on a LINUX SUSE OS:
export async function up(directory: string): Promise<void> {
await compose.upAll({ cwd: directory, log: true });
}
exitCode: 125,
err: "unknown shorthand flag: 'd' in -d\n" +
"See 'docker --help'.\n" +
'\n' +
'Usage: docker [OPTIONS] COMMAND\n' +
'\n' +
'A self-sufficient runtime for containers\n' +
'\n' +
...
I'm using docker-desktop on windows and having issues when trying to pass an env object to any compose command.\ Happens even if env is just an empty object
Its not a major issue because in my case I can fall back to regular docker commandOptions instead of defining env, but still wanted to let you know.
demo logs:
works with
env: undefined
: