Skip to content

Commit

Permalink
fix: containername
Browse files Browse the repository at this point in the history
  • Loading branch information
QuadStingray authored Oct 14, 2023
1 parent d52f146 commit b4fb724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_docker.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ commands += Command.command("ci-docker")((state: State) => {
if (semVersion.isStable) {
val listOfPlatforms = List("linux/amd64", "linux/arm64/v8", "linux/arm64")

val containerName = s"mongocamp-server:${version.value}"
val containerName = s"mongocamp/mongocamp-server:${version.value}"
val buildCommand = s"docker buildx build --platform=${listOfPlatforms.mkString(",")} --tag $containerName --push ."
if (buildCommand.!(ProcessLogger(stout => state.log.info(stout), sterr => state.log.info(sterr))) != 0) {
throw new Exception(s"Not zero exit code for build base image: ${containerName}")
Expand Down

0 comments on commit b4fb724

Please sign in to comment.