forked from goldsborough/clang-expand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
39 lines (38 loc) · 883 Bytes
/
docker-compose.yaml
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
version: '3'
services:
debian:
build:
context: .
dockerfile: docker/debian.Dockerfile
image: clang-expand:debian
command: ./build.sh debian
volumes:
- build:/home/build
- llvm-build:/llvm/build
- $PWD/../:/home/project
- $PWD/bin:/home/build/bin
fedora:
build:
context: .
dockerfile: docker/fedora.Dockerfile
image: clang-expand:fedora
command: ./build.sh fedora
volumes:
- build:/home/build
- llvm-build:/llvm/build
- $PWD/../:/home/project
- $PWD/bin:/home/build/bin
opensuse:
build:
context: .
dockerfile: docker/opensuse.Dockerfile
image: clang-expand:opensuse
command: ./build.sh opensuse
volumes:
- build:/home/build
- llvm-build:/llvm/build
- $PWD/../:/home/project
- $PWD/bin:/home/build/bin
volumes:
llvm-build:
build: