-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.test.yml
More file actions
37 lines (31 loc) · 939 Bytes
/
docker-compose.test.yml
File metadata and controls
37 lines (31 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
services:
api:
environment:
APP_ENV: test
DATABASE_URL: postgresql+asyncpg://${POSTGRES_USER:-memoryos}:${POSTGRES_PASSWORD:-memoryos123}@postgres:5432/${POSTGRES_DB:-memoryos_test}
REDIS_URL: redis://redis:6379/2
CELERY_BROKER_URL: redis://redis:6379/2
CELERY_RESULT_BACKEND: redis://redis:6379/3
QDRANT_URL: http://qdrant:6333
AWS_ENDPOINT_URL: http://localstack:4566
command: ["pytest", "tests", "-q"]
ports: !reset []
celery-worker:
profiles: ["disabled"]
celery-beat:
profiles: ["disabled"]
postgres:
environment:
POSTGRES_USER: ${POSTGRES_USER:-memoryos}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-memoryos123}
POSTGRES_DB: ${POSTGRES_DB:-memoryos_test}
ports: !reset []
volumes: !reset []
tmpfs:
- /var/lib/postgresql/data
redis:
ports: !reset []
qdrant:
ports: !reset []
localstack:
ports: !reset []