-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (41 loc) · 1.11 KB
/
docker-compose.yml
File metadata and controls
44 lines (41 loc) · 1.11 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
version: '3.8'
services:
pulse:
build: .
container_name: runagent-pulse
ports:
- "8000:8000"
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ./pulse-data:/app/data
environment:
- PULSE_API_KEY=${PULSE_API_KEY:-}
- PULSE_TIMEZONE=UTC
- PULSE_DEBUG=${PULSE_DEBUG:-true}
- PULSE_DB_PATH=/app/data/pulse.db
- ENABLE_SERVERLESS_INTEGRATION=${ENABLE_SERVERLESS_INTEGRATION:-true}
- RUNAGENT_SERVERLESS_API_KEY=${RUNAGENT_SERVERLESS_API_KEY:-}
- RUNAGENT_API_KEY=${RUNAGENT_SERVERLESS_API_KEY:-}
- RUNAGENT_BASE_URL=${RUNAGENT_BASE_URL:-https://backend.run-agent.ai/}
- GIT_PYTHON_REFRESH=quiet
networks:
- runagent-network
restart: unless-stopped
webhook-handler:
build: ./webhook-handler
container_name: runagent-webhook-handler
ports:
- "3001:3001"
volumes:
- ./webhook-results:/app/results
environment:
- RESULTS_DIR=/app/results
networks:
- runagent-network
restart: unless-stopped
depends_on:
- pulse
networks:
runagent-network:
driver: bridge