-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
47 lines (40 loc) · 968 Bytes
/
Copy pathdocker-compose.dev.yml
File metadata and controls
47 lines (40 loc) · 968 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
38
39
40
41
42
43
44
45
46
47
version: "3.9"
# Development override — merge with main: docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d
services:
helpdesk-agent:
environment:
- LOG_LEVEL=DEBUG
- DEBUG=1
volumes:
- ./scripts:/app/scripts:ro
- ./config:/app/config:ro
admin-agent:
environment:
- LOG_LEVEL=DEBUG
- DEBUG=1
volumes:
- ./scripts:/app/scripts:ro
- ./config:/app/config:ro
llama:
ports:
- "0.0.0.0:8081:8081" # Expose for development
whatsapp-webhook:
build:
context: .
dockerfile: Dockerfile.whatsapp
ports:
- "127.0.0.1:9090:9090"
- "0.0.0.0:8383:8383" # WhatsApp HTTPS
health-monitor:
build:
context: .
dockerfile: Dockerfile
volumes:
- ./scripts:/app/scripts:ro
- ./config:/app/config:ro
tools-ui:
build:
context: tools-ui
dockerfile: Dockerfile
ports:
- "127.0.0.1:8484:8484"