-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
83 lines (77 loc) · 2.03 KB
/
Copy pathdocker-compose.yml
File metadata and controls
83 lines (77 loc) · 2.03 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
version: "3.9"
services:
postgres:
image: pgvector/pgvector:pg16
environment:
POSTGRES_USER: pyxis
POSTGRES_PASSWORD: pyxis
POSTGRES_DB: pyxis
# No ports: exposed — only backend/worker need it, via Docker internal network
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U pyxis"]
interval: 5s
timeout: 5s
retries: 10
redis:
image: redis:7-alpine
# No ports: exposed — only backend/worker need it, via Docker internal network
volumes:
- redis_data:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 3s
retries: 10
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "127.0.0.1:8000:8000" # nginx on host proxies to this; not reachable from internet
env_file:
- ./backend/.env
environment:
DATABASE_URL: postgresql+asyncpg://pyxis:pyxis@postgres:5432/pyxis
REDIS_URL: redis://redis:6379
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
volumes:
- ./backend:/app
- ./agent:/agent
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
worker:
build:
context: ./backend
dockerfile: Dockerfile
env_file:
- ./backend/.env
environment:
DATABASE_URL: postgresql+asyncpg://pyxis:pyxis@postgres:5432/pyxis
REDIS_URL: redis://redis:6379
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
volumes:
- ./backend:/app
- ./agent:/agent
command: arq app.worker.WorkerSettings
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "127.0.0.1:5173:5173" # nginx on host proxies to this; not reachable from internet
volumes:
- ./frontend:/app
- /app/node_modules
command: npm run dev -- --host
volumes:
postgres_data:
redis_data: