Skip to content

Commit

Permalink
Fix starting local Docker (#6720)
Browse files Browse the repository at this point in the history
  • Loading branch information
elle-j authored Jun 12, 2024
1 parent 8a0f7f1 commit 35dc0b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/baas-test-server/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export async function fetchBaasTag(branch: string) {
}

export function getLatestLocalId() {
const imagesOutput = execSync("docker images --format json", { encoding: "utf8" });
const imagesOutput = execSync("docker images --format '{{json .}}'", { encoding: "utf8" });
for (const line of imagesOutput.split("\n")) {
if (line) {
const { Repository: repository, Tag: tag, ID: id } = JSON.parse(line.trim());
Expand Down

0 comments on commit 35dc0b0

Please sign in to comment.