Skip to content

Commit

Permalink
Merge pull request torizon#193 from andreriesco/dev
Browse files Browse the repository at this point in the history
createDockerComposeProd: Fix ${DOCKER_LOGIN} not being updated correctly
  • Loading branch information
andreriesco authored Apr 8, 2024
2 parents 21583d9 + 9195cdb commit 692bc87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/createDockerComposeProduction.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ Write-Host "Replacing variables ..."
foreach ($key in $prodKeys) {
$composeServices[$key].Remove("build")
$composeServices[$key].image = `
$composeServices[$key].image.replace("`${DOCKER_LOGIN}", $dockerLogin)
$composeServices[$key].image.replace("`${DOCKER_LOGIN}", $env:DOCKER_LOGIN)
$composeServices[$key].image = `
$composeServices[$key].image.replace("`${TAG}", $tag)
$composeServices[$key].image = `
Expand Down

0 comments on commit 692bc87

Please sign in to comment.