feat(ai): Implement AI agent contact form and fix local Qdrant network configs
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 7s
Build & Deploy / 🏗️ Build (push) Failing after 18m2s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 QA (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 3s

This commit is contained in:
2026-03-06 11:56:12 +01:00
parent 6a6fbb6f19
commit 85d2d2c069
21 changed files with 9857 additions and 13830 deletions

View File

@@ -7,6 +7,10 @@ services:
- infra
env_file:
- ${ENV_FILE:-.env}
environment:
- IS_DOCKER=true
- QDRANT_URL=http://mintel-qdrant:6333
- REDIS_URL=redis://mintel-redis:6379
labels:
- "traefik.enable=true"
# HTTP ⇒ HTTPS redirect
@@ -55,7 +59,7 @@ services:
- "traefik.http.middlewares.${PROJECT_NAME}-forward.headers.customrequestheaders.X-Forwarded-Ssl=on"
gatekeeper:
profiles: ["gatekeeper"]
profiles: [ "gatekeeper" ]
image: registry.infra.mintel.me/mintel/gatekeeper:v1.7.12
container_name: ${PROJECT_NAME:-mintel-me}-gatekeeper
restart: always
@@ -93,6 +97,22 @@ services:
volumes:
- payload-db-data:/var/lib/postgresql/data
mintel-redis:
image: redis:7-alpine
restart: always
networks:
- default
mintel-qdrant:
image: qdrant/qdrant:v1.13.2
restart: always
volumes:
- mintel_qdrant_data:/qdrant/storage
networks:
- default
ports:
- "26333:6333"
networks:
default:
name: ${PROJECT_NAME:-mintel-me}-internal
@@ -103,4 +123,5 @@ networks:
volumes:
payload-db-data:
external: true
name: mintel-me_payload-db-data
name: ${PROJECT_NAME:-mintel-me}_payload-db-data
mintel_qdrant_data: