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
services:
# Run coupling analysis
analyze:
build: .
volumes:
- .:/workspace:ro
command:
# Run with summary output
summary:
build: .
volumes:
- .:/workspace:ro
command:
# Run Web UI
web:
build: .
ports:
- "3000:3000"
volumes:
- .:/workspace:ro
command:
# Development environment with source mounted
dev:
build:
context: .
target: builder
volumes:
- .:/app
- cargo-cache:/usr/local/cargo/registry
working_dir: /app
command:
volumes:
cargo-cache: