-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (47 loc) · 812 Bytes
/
docker-compose.yml
File metadata and controls
47 lines (47 loc) · 812 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
37
38
39
40
41
42
43
44
45
46
47
version: '2'
services:
rpgffi11:
environment:
- PATH=$PATH:/root/.cargo/bin
build:
context: .
dockerfile: Dockerfile
args:
- PG_VER=11
- RUST_VER=1.33.0
volumes:
- .:/source
working_dir: /source
command: >
sh -c "util/generate_bindings &&
cargo test --verbose"
rpgffi10:
extends:
service: rpgffi11
build:
args:
- PG_VER=10
rpgffi96:
extends:
service: rpgffi11
build:
args:
- PG_VER=9.6
rpgffi95:
extends:
service: rpgffi11
build:
args:
- PG_VER=9.5
rpgffi94:
extends:
service: rpgffi11
build:
args:
- PG_VER=9.4
rpgffi93:
extends:
service: rpgffi11
build:
args:
- PG_VER=9.3