diff --git a/build_docker.sbt b/build_docker.sbt index 27f43aed..63008542 100755 --- a/build_docker.sbt +++ b/build_docker.sbt @@ -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}")