forked from FlowiseAI/Flowise
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
68 lines (67 loc) · 1.87 KB
/
docker-compose.dev.yml
File metadata and controls
68 lines (67 loc) · 1.87 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
services:
# dev-inngest:
# image: node:18
# working_dir: /app/packages/db
# volumes:
# - .:/app
# ports:
# - '8288:8288'
# command: npx inngest-cli@latest dev -u http://127.0.0.1:3000/api/inngest
# studio:
# image: node:18
# working_dir: /app/packages/db
# volumes:
# - .:/app
# ports:
# - '5555:5555'
# command: npx prisma studio
# environment:
# - DATABASE_URL=postgresql://example_user:example_password@postgres:5432/example_db?schema=public
# depends_on:
# - postgres
redis:
image: redis:latest
ports:
- '6379:6379'
volumes:
- redis_data:/data
postgres:
image: pgvector/pgvector:pg16
ports:
- '5432:5432'
volumes:
- postgres_data:/var/lib/postgresql/data/
- ./docker/postgres-init:/docker-entrypoint-initdb.d
environment:
POSTGRES_PORT: 5432
POSTGRES_USER: example_user
POSTGRES_PASSWORD: example_password
POSTGRES_DB: example_db
# langchain-frontend:
# image: notlangchain/langchainplus-frontend:latest
# ports:
# - 4173:4173
# environment:
# - BACKEND_URL=http://langchain-backend:8000
# - PUBLIC_BASE_URL=http://localhost:8000
# - PUBLIC_DEV_MODE=true
# depends_on:
# - langchain-backend
# langchain-backend:
# image: notlangchain/langchainplus:latest
# environment:
# - PORT=8000
# - LANGCHAIN_ENV=local
# ports:
# - 8000:8000
# depends_on:
# - langchain-db
# langchain-db:
# image: postgres:14.1
# environment:
# - POSTGRES_PASSWORD=postgres
# - POSTGRES_USER=postgres
# - POSTGRES_DB=postgres
volumes:
postgres_data:
redis_data: