-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
68 lines (68 loc) · 1.76 KB
/
docker-compose.yml
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
version: '2'
services:
gcc_4-8:
build:
context: .
dockerfile: ./docker/trusty/gcc/4-8/Dockerfile
volumes:
- .:/home/source:ro
gcc_4-9:
build:
context: .
dockerfile: ./docker/trusty/gcc/4-9/Dockerfile
volumes:
- .:/home/source:ro
gcc_5-3:
build:
context: .
dockerfile: ./docker/trusty/gcc/5/Dockerfile
volumes:
- .:/home/source:ro
gcc_6-1_trusty:
build:
context: .
dockerfile: ./docker/trusty/gcc/6/Dockerfile
volumes:
- .:/home/source:ro
clang_3-5:
build:
context: .
dockerfile: ./docker/trusty/clang/3-5/Dockerfile
volumes:
- .:/home/source:ro
clang_3-6:
build:
context: .
dockerfile: ./docker/trusty/clang/3-6/Dockerfile
volumes:
- .:/home/source:ro
clang_3-7:
build:
context: .
dockerfile: ./docker/trusty/clang/3-7/Dockerfile
volumes:
- .:/home/source:ro
clang_3-8_trusty:
build:
context: .
dockerfile: ./docker/trusty/clang/3-8/Dockerfile
volumes:
- .:/home/source:ro
gcc_5-4:
build:
context: .
dockerfile: ./docker/xenial/gcc/5/Dockerfile
volumes:
- .:/home/source:ro
gcc_6-1:
build:
context: .
dockerfile: ./docker/xenial/gcc/6/Dockerfile
volumes:
- .:/home/source:ro
clang_3-8:
build:
context: .
dockerfile: ./docker/xenial/clang/3-8/Dockerfile
volumes:
- .:/home/source:ro