File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ FROM python:3.13-slim AS builder
44WORKDIR /app
55ENV POETRY_VERSION=2.0.1
66
7- RUN pip install --no-cache-dir "poetry==$POETRY_VERSION"
7+ RUN pip install --no-cache-dir "poetry==$POETRY_VERSION" poetry-plugin-export
88COPY pyproject.toml poetry.lock ./
99RUN poetry export -f requirements.txt --output requirements.txt --without dev
1010
Original file line number Diff line number Diff line change @@ -47,6 +47,14 @@ services:
4747
4848volumes :
4949 postgres_data :
50+ external : true
51+ name : docker_postgres_data
5052 redis_data :
53+ external : true
54+ name : docker_redis_data
5155 qdrant_data :
52- n8n_data:
56+ external : true
57+ name : docker_qdrant_data
58+ n8n_data :
59+ external : true
60+ name : docker_n8n_data
Original file line number Diff line number Diff line change @@ -23,8 +23,4 @@ docker compose -f docker-compose.yml -f infra/docker-compose.prod.yml run --rm b
2323echo " 🔌 Starting all services..."
2424docker compose -f docker-compose.yml -f infra/docker-compose.prod.yml up -d --scale backend=2
2525
26- # 6. Запуск моніторингу
27- echo " 📊 Starting monitoring stack..."
28- docker compose -f infra/monitoring/docker-compose.monitoring.yml up -d
29-
3026echo " ✅ Deployment complete!"
You can’t perform that action at this time.
0 commit comments