Skip to content

Commit e59ed01

Browse files
KoderFPVclaude
andcommitted
fix: Use docker compose v2 syntax in Jenkinsfile
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 3ded824 commit e59ed01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile.eval

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pipeline {
2828
stage('Start Infrastructure') {
2929
steps {
3030
sh '''
31-
docker-compose -f docker-compose.eval.yml up -d
31+
docker compose -f docker-compose.eval.yml up -d
3232

3333
echo "Waiting for MongoDB..."
3434
timeout 60 bash -c 'until docker exec cognito-eval-mongo mongosh --eval "db.runCommand({ ping: 1 })" > /dev/null 2>&1; do sleep 2; done'
@@ -57,7 +57,7 @@ pipeline {
5757
post {
5858
always {
5959
archiveArtifacts artifacts: 'agents/__tests__/evaluation/last-run/*.json', allowEmptyArchive: true
60-
sh 'docker-compose -f docker-compose.eval.yml down -v || true'
60+
sh 'docker compose -f docker-compose.eval.yml down -v || true'
6161
}
6262
failure {
6363
echo 'Evaluation tests failed. Check archived artifacts for details.'

0 commit comments

Comments
 (0)