Skip to content

Commit

Permalink
fix(minio): Fix minio url
Browse files Browse the repository at this point in the history
  • Loading branch information
syfxlin committed Jan 2, 2025
1 parent 37c243a commit c655424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/minio/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class MinioPlugin implements DepkerPlugin {
const result = await this.depker.node.container.exec(MinioPlugin.NAME, [
"sh",
"-c",
[`mc alias set minio http://localhost '${config.username}' '${config.password}'`, ...[script].flat()].join(" && "),
[`mc alias set minio http://localhost:9000 '${config.username}' '${config.password}'`, ...[script].flat()].join(" && "),
]);
return result.stdout;
}
Expand Down

0 comments on commit c655424

Please sign in to comment.