RED-4653: Removed leftover Docker config

This commit is contained in:
Viktor Seifert 2022-07-26 09:48:08 +02:00
parent 1074167aa9
commit 2ff5897ee3

View File

@ -71,7 +71,7 @@ public class PlanSpec {
return new Plan(
project(),
SERVICE_NAME, new BambooKey(SERVICE_KEY))
.description("Docker build for pyinfra")
.description("Build for pyinfra")
.stages(
new Stage("Sonar Stage")
.jobs(
@ -94,16 +94,7 @@ public class PlanSpec {
.description("Run Sonarqube scan.")
.location(Location.FILE)
.fileFromPath("bamboo-specs/src/main/resources/scripts/sonar-scan.sh")
.argument(SERVICE_NAME),
new ScriptTask()
.description("Shut down any running docker containers.")
.location(Location.FILE)
.inlineBody("pip install docker-compose\n" +
"docker-compose down"))
.dockerConfiguration(
new DockerConfiguration()
.image("nexus.iqser.com:5001/infra/release_build:4.2.0")
.volume("/var/run/docker.sock", "/var/run/docker.sock"))),
.argument(SERVICE_NAME))),
new Stage("Licence Stage")
.jobs(
new Job("Git Tag Job", new BambooKey("GITTAG"))