-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
71 lines (61 loc) · 1.2 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
69
70
71
version: '3.7'
x-controller:
&controller-template
tmpfs: /tmp
environment:
- CCACHE_DIR=/mnt/ccache
- CCACHE_CONFIGPATH=/mnt/ccache/ccache.conf
secrets:
- github_apikey
volumes:
- ccache:/mnt/ccache
- ./tmp_config:/mnt/config
- ./tmp_builds:/mnt/builds
# Remove me when ubuntu 14.04 is less shitty
network_mode: "host"
dns: 8.8.8.8
x-build:
&build-defaults
context: .
dockerfile: Dockerfile
services:
build-template:
build:
context: .
dockerfile: Dockerfile.buildenv
image: build-template:1
controller-050:
<< : *controller-template
build:
<< : *build-defaults
args:
- TAG=v0.5.0
controller-054:
<< : *controller-template
build:
<< : *build-defaults
args:
- TAG=v0.5.4
controller-055:
<< : *controller-template
build:
<< : *build-defaults
args:
- TAG=v0.5.5
controller-056:
<< : *controller-template
build:
<< : *build-defaults
args:
- TAG=v0.5.6
controller-057:
<< : *controller-template
build:
<< : *build-defaults
args:
- TAG=v0.5.7
secrets:
github_apikey:
file: ./apikey
volumes:
ccache: