-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
61 lines (57 loc) · 1.48 KB
/
docker-compose.yml
File metadata and controls
61 lines (57 loc) · 1.48 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
services:
server:
image: ghcr.io/uid4oe/agent-orchestration-patterns-server:latest
build:
context: .
dockerfile: server/Dockerfile
ports:
- "3001:3001"
env_file:
- path: .env
required: false
environment:
- LLM_PROVIDER=${LLM_PROVIDER:-}
- LLM_MODEL=${LLM_MODEL:-}
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-}
- OPENAI_API_KEY=${OPENAI_API_KEY:-}
- GOOGLE_GENERATIVE_AI_API_KEY=${GOOGLE_GENERATIVE_AI_API_KEY:-}
- LANGFUSE_SECRET_KEY=${LANGFUSE_SECRET_KEY:-}
- LANGFUSE_PUBLIC_KEY=${LANGFUSE_PUBLIC_KEY:-}
- LANGFUSE_BASEURL=${LANGFUSE_BASEURL:-}
restart: unless-stopped
frontend:
image: ghcr.io/uid4oe/agent-orchestration-patterns-frontend:latest
build:
context: .
dockerfile: frontend/Dockerfile
ports:
- "3000:80"
depends_on:
- server
restart: unless-stopped
postgres:
profiles:
- langfuse
image: postgres:16
environment:
POSTGRES_DB: langfuse
POSTGRES_USER: langfuse
POSTGRES_PASSWORD: langfuse
volumes:
- pgdata:/var/lib/postgresql/data
restart: unless-stopped
langfuse:
profiles:
- langfuse
image: langfuse/langfuse:2
ports:
- "3002:3000"
depends_on:
- postgres
environment:
DATABASE_URL: postgresql://langfuse:langfuse@postgres:5432/langfuse
NEXTAUTH_SECRET: secret
NEXTAUTH_URL: http://localhost:3002
restart: unless-stopped
volumes:
pgdata: