-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.local.yaml
More file actions
51 lines (47 loc) · 1.32 KB
/
Copy pathdocker-compose.local.yaml
File metadata and controls
51 lines (47 loc) · 1.32 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
services:
process-flow:
build: .
image: mertend/process-flow:latest
container_name: merten-process-flow
restart: unless-stopped
ports:
- "3000:3000"
depends_on:
- process-flow-db
- activity-openrouter
networks:
- local
environment:
DATABASE_URL: postgresql://processflow:${DB_PASSWORD}@process-flow-db:5432/processflow
BETTER_AUTH_SECRET: ${BETTER_AUTH_SECRET}
BETTER_AUTH_URL: http://localhost:3000
APP_URL: http://localhost:3000
INTERNAL_APP_URL: http://process-flow:3000
NEXT_PUBLIC_APP_URL: http://localhost:3000
# Custom activity URLs — reachable via Docker network
ACTIVITY_OPENROUTER_URL: http://activity-openrouter:3000/call
activity-openrouter:
build: ./custom-activities/openrouter
container_name: merten-activity-openrouter
restart: unless-stopped
networks:
- local
process-flow-db:
image: postgres:17-alpine
container_name: merten-process-flow-db
restart: unless-stopped
ports:
- "5432:5432"
networks:
- local
environment:
POSTGRES_DB: processflow
POSTGRES_USER: processflow
POSTGRES_PASSWORD: ${DB_PASSWORD}
volumes:
- process-flow-db-data:/var/lib/postgresql/data
volumes:
process-flow-db-data:
networks:
local:
driver: bridge