diff --git a/Jenkinsfile b/Jenkinsfile index 3cdb07c..00700c3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -190,7 +190,7 @@ pipeline { echo "Starting infrastructure services..." # Start databases and infrastructure first - docker compose up -d postgres redis mongodb rabbitmq neo4j chromadb + docker compose --env-file .env up -d postgres redis mongodb rabbitmq neo4j chromadb echo "Infrastructure services status:" docker compose ps @@ -210,7 +210,7 @@ pipeline { cd ${DEPLOY_PATH} echo "Starting application services..." - docker compose up -d + docker compose --env-file .env up -d echo "Waiting for application services to be ready..." sleep 60