-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
81 lines (70 loc) · 1.8 KB
/
docker-compose.dev.yml
File metadata and controls
81 lines (70 loc) · 1.8 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
69
70
71
72
73
74
75
76
77
78
79
80
81
version: '3.8'
# Development overrides for docker-compose.yml
# Usage: docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
services:
# PostgreSQL - expose port for local dev tools
postgres:
ports:
- "5432:5432"
# Redis - expose port for local dev tools
redis:
ports:
- "6379:6379"
# Manager - development mode with hot reload
manager:
environment:
- QUART_ENV=development
- QUART_DEBUG=true
volumes:
- ./services/manager-new:/app
# PKI Server - development mode with hot reload
pki-server:
environment:
- FLASK_ENV=development
- FLASK_DEBUG=true
volumes:
- ./services/pki-server-new:/app
# SSH CA - development mode with hot reload
ssh-ca:
environment:
- FLASK_ENV=development
- FLASK_DEBUG=true
volumes:
- ./services/ssh-ca:/app
# AAA Monitor - development mode with hot reload
aaa-monitor:
environment:
- FLASK_ENV=development
- FLASK_DEBUG=true
volumes:
- ./services/aaa-monitor:/app
# Worker S3 - development mode with hot reload
worker-s3:
environment:
- FLASK_ENV=development
- FLASK_DEBUG=true
volumes:
- ./services/worker-s3:/app
# Worker Scanner - development mode with hot reload
worker-scanner:
environment:
- FLASK_DEBUG=1
- CELERY_ALWAYS_EAGER=true
volumes:
- ./services/worker-scanner:/app
# WebUI - development mode with hot reload
webui:
environment:
- NODE_ENV=development
command: npm run dev
ports:
- "3000:3000"
volumes:
- ./services/webui:/app
- ./services/webui/node_modules:/app/node_modules
# EDR Agent - development mode with debug logging
edr-agent:
environment:
- LOG_LEVEL=debug
volumes:
- ./services/edr-agent:/app