Skip to content

Commit 71c566e

Browse files
KoderFPVclaude
andcommitted
fix: Force recreate containers to ensure clean Weaviate schema
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f06b6bd commit 71c566e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Jenkinsfile.eval

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ pipeline {
3030
stage('Start Infrastructure') {
3131
steps {
3232
sh '''
33-
docker compose -f docker-compose.eval.yml up -d
33+
docker compose -f docker-compose.eval.yml down -v 2>/dev/null || true
34+
docker compose -f docker-compose.eval.yml up -d --force-recreate
3435

3536
echo "Waiting for MongoDB..."
3637
timeout 60 bash -c 'until docker exec cognito-eval-mongo mongosh --eval "db.runCommand({ ping: 1 })" > /dev/null 2>&1; do sleep 2; done'

0 commit comments

Comments
 (0)