-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.integration.yaml
58 lines (58 loc) · 1.46 KB
/
docker-compose.integration.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
services:
# Legacy with apt disabled
ubuntu.18.04:
deploy:
replicas: 0
privileged: true
environment:
- GOCOVERDIR=/app/coverage/int/ubuntu/18.04
build:
context: .
target: bionic
dockerfile: .docker/Ubuntu.dockerfile
volumes:
- "./coverage/int/ubuntu/18.04:/app/coverage/int/ubuntu/18.04"
ubuntu.22.04:
deploy:
replicas: 0
privileged: true
environment:
- GOCOVERDIR=/app/coverage/int/ubuntu/22.04
build:
context: .
target: jammy
dockerfile: .docker/Ubuntu.dockerfile
volumes:
- "./coverage/int/ubuntu/22.04:/app/coverage/int/ubuntu/22.04"
ubuntu.24.04:
privileged: true
environment:
- GOCOVERDIR=/app/coverage/int/ubuntu/24.04
build:
context: .
target: noble
dockerfile: .docker/Ubuntu.dockerfile
volumes:
- "./coverage/int/ubuntu/24.04:/app/coverage/int/ubuntu/24.04"
fedora.39:
deploy:
replicas: 0
privileged: true
environment:
- GOCOVERDIR=/app/coverage/int/fedora/39
build:
context: .
target: legacy
dockerfile: .docker/Fedora.dockerfile
volumes:
- "./coverage/int/fedora/39:/app/coverage/int/fedora/39"
fedora.40:
privileged: true
environment:
- GOCOVERDIR=/app/coverage/int/fedora/40
build:
context: .
target: previous
dockerfile: .docker/Fedora.dockerfile
volumes:
- "./coverage/int/fedora/40:/app/coverage/int/fedora/40"