-
Notifications
You must be signed in to change notification settings - Fork 18
/
docker-compose.yml
201 lines (184 loc) · 3.39 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
version: '3.7'
x-extract:
&extract
build:
context: extract
args:
- CHADWICK_VERSION
- RETROSHEET_VERSION
- BASEBALLDATABANK_VERSION
- BUILD_ENV
image: ${REPO}:extract-${VERSION}
x-ddl:
&ddl
build:
context: transform
dockerfile: ddl.Dockerfile
args:
- VERSION
image: ${REPO}:ddl-${VERSION}
x-parquet:
&parquet
build:
context: transform
dockerfile: parquet.Dockerfile
args:
- VERSION
image: ${REPO}:parquet-${VERSION}
depends_on:
- extract
x-csv:
&csv
build:
context: transform
dockerfile: csv.Dockerfile
args:
- VERSION
image: ${REPO}:csv-${VERSION}
depends_on:
- extract
x-clickhouse:
&clickhouse
build:
context: load/clickhouse
dockerfile: ../Dockerfile
target: clickhouse
platforms:
- "linux/amd64"
args:
- VERSION
image: ${REPO}:clickhouse-${VERSION}
volumes:
- ~/boxball/clickhouse:/var/lib/clickhouse
depends_on:
- parquet
- ddl
x-drill:
&drill
build:
context: load
target: drill
platforms:
- "linux/amd64"
args:
- VERSION
image: ${REPO}:drill-${VERSION}
volumes:
- ~/boxball/drill:/data
depends_on:
- parquet
- ddl
x-postgres:
&postgres
build:
context: load/postgres
dockerfile: ../Dockerfile
target: postgres
platforms:
- "linux/amd64"
args:
- VERSION
image: ${REPO}:postgres-${VERSION}
volumes:
- ~/boxball/postgres:/var/lib/postgresql/data
depends_on:
- csv
- ddl
x-postgres-cstore-fdw:
&postgres-cstore-fdw
build:
context: load/postgres_cstore_fdw
dockerfile: ../Dockerfile
target: postgres-cstore-fdw
platforms:
- "linux/amd64"
args:
- VERSION
image: ${REPO}:postgres-cstore-fdw-${VERSION}
volumes:
- ~/boxball/postgres-cstore-fdw:/var/lib/postgresql/data
depends_on:
- csv
- ddl
x-mysql:
&mysql
build:
context: load/mysql
dockerfile: ../Dockerfile
target: mysql
platforms:
- "linux/amd64"
args:
- VERSION
image: ${REPO}:mysql-${VERSION}
volumes:
- ~/boxball/mysql:/var/lib/mysql
depends_on:
- csv
- ddl
x-sqlite:
&sqlite
build:
context: load
target: sqlite
platforms:
- "linux/amd64"
args:
- VERSION
image: ${REPO}:sqlite-${VERSION}
volumes:
- ~/boxball/sqlite:/db
depends_on:
- csv
- ddl
services:
extract:
<< : *extract
extract-latest:
<< : *extract
image: ${REPO}:extract-latest
ddl:
<< : *ddl
ddl-latest:
<< : *ddl
image: ${REPO}:ddl-latest
parquet:
<< : *parquet
parquet-latest:
<< : *parquet
image: ${REPO}:parquet-latest
csv:
<< : *csv
csv-latest:
<< : *csv
image: ${REPO}:csv-latest
clickhouse:
<< : *clickhouse
clickhouse-latest:
<< : *clickhouse
image: ${REPO}:clickhouse-latest
drill:
<< : *drill
drill-latest:
<< : *drill
image: ${REPO}:drill-latest
postgres:
<< : *postgres
postgres-latest:
<< : *postgres
image: ${REPO}:postgres-latest
postgres-cstore-fdw:
<< : *postgres-cstore-fdw
postgres-cstore-fdw-latest:
<< : *postgres-cstore-fdw
image: ${REPO}:postgres-cstore-fdw-latest
mysql:
<< : *mysql
mysql-latest:
<< : *mysql
image: ${REPO}:mysql-latest
sqlite:
<< : *sqlite
sqlite-latest:
<< : *sqlite
image: ${REPO}:sqlite-latest