-
Notifications
You must be signed in to change notification settings - Fork 12
/
docker-compose.yml
101 lines (99 loc) · 1.96 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
centos8:
dockerfile: dockerfiles/Dockerfile.centos-8
build: .
volumes:
- .:/octopass
environment:
DIST: el8
command: make rpm
centos7:
dockerfile: dockerfiles/Dockerfile.centos-7
build: .
volumes:
- .:/octopass
environment:
DIST: el7
command: make rpm
#centos6:
# dockerfile: dockerfiles/Dockerfile.centos-6
# build: .
# volumes:
# - .:/octopass
# environment:
# DIST: el6
# command: make rpm
ubuntu20:
dockerfile: dockerfiles/Dockerfile.ubuntu-20
build: .
volumes:
- .:/octopass
environment:
DIST: focal
command: make deb
ubuntu18:
dockerfile: dockerfiles/Dockerfile.ubuntu-18
build: .
volumes:
- .:/octopass
environment:
DIST: bionic
command: make deb
#ubuntu16:
# dockerfile: dockerfiles/Dockerfile.ubuntu-16
# build: .
# volumes:
# - .:/octopass
# environment:
# DIST: xenial
# command: make deb
#ubuntu14:
# dockerfile: dockerfiles/Dockerfile.ubuntu-14
# build: .
# volumes:
# - .:/octopass
# environment:
# DIST: trusty
# command: make deb
#ubuntu12:
# dockerfile: dockerfiles/Dockerfile.ubuntu-12
# build: .
# volumes:
# - .:/octopass
# environment:
# DIST: precise
# command: make deb12
debian11:
dockerfile: dockerfiles/Dockerfile.debian-11
build: .
volumes:
- .:/octopass
environment:
DIST: bullseye
DEB_BUILD_OPTIONS: noautodbgsym
command: make deb
debian10:
dockerfile: dockerfiles/Dockerfile.debian-10
build: .
volumes:
- .:/octopass
environment:
DIST: buster
DEB_BUILD_OPTIONS: noautodbgsym
command: make deb
debian9:
dockerfile: dockerfiles/Dockerfile.debian-9
build: .
volumes:
- .:/octopass
environment:
DIST: stretch
DEB_BUILD_OPTIONS: noautodbgsym
command: make deb
#debian8:
# dockerfile: dockerfiles/Dockerfile.debian-8
# build: .
# volumes:
# - .:/octopass
# environment:
# DIST: jessie
# command: make deb