forked from Justin0504/Aegis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
28 lines (25 loc) · 1002 Bytes
/
docker-compose.dev.yml
File metadata and controls
28 lines (25 loc) · 1002 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
version: '3.8'
# ── Dev overlay: hot-reload for gateway + cockpit ────────────
# Usage: docker compose -f docker-compose.yml -f docker-compose.dev.yml up
services:
gateway:
build:
context: .
dockerfile: ./docker/gateway.dev.Dockerfile
volumes:
- ./packages/gateway-mcp/src:/app/packages/gateway-mcp/src:ro
- ./packages/core-schema/src:/app/packages/core-schema/src:ro
environment:
NODE_ENV: development
command: ["npm", "run", "dev", "--workspace=@agentguard/gateway-mcp"]
cockpit:
build:
context: .
dockerfile: ./docker/cockpit.dev.Dockerfile
volumes:
- ./apps/compliance-cockpit/src:/app/apps/compliance-cockpit/src:ro
- ./apps/compliance-cockpit/public:/app/apps/compliance-cockpit/public:ro
- ./packages/core-schema/src:/app/packages/core-schema/src:ro
environment:
NODE_ENV: development
command: ["npm", "run", "dev", "--workspace=@agentguard/compliance-cockpit"]