-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (34 loc) · 774 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (34 loc) · 774 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
version: '3.7'
services:
dev:
build:
context: .
hostname: dev
volumes:
- ./case-studies:/home/dev/case-studies
- ./codegen:/home/dev/codegen
- ./perf-benchmarks:/home/dev/perf-benchmarks
- ./protocols:/home/dev/protocols
- ./scripts:/home/dev/scripts
- ./web-sandbox:/home/dev/web-sandbox
ports:
- "127.0.0.1:3000:3000"
- "127.0.0.1:5000:5000"
- "127.0.0.1:8080:8080"
- "127.0.0.1:8888:8888"
test:
build:
context: .
hostname: dev
volumes:
- ./codegen:/home/dev/codegen
- ./web-sandbox:/home/dev/web-sandbox
command:
python3.8 -m codegen.tests.system
volumes:
case-studies:
codegen:
perf-benchmarks:
protocols:
scripts:
web-sandbox: