-
Notifications
You must be signed in to change notification settings - Fork 346
/
docker-compose.yml
108 lines (92 loc) · 2.12 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
version: '3'
services:
ubuntu_16.04:
build:
context: .
dockerfile: .docker/Dockerfile-ubuntu_16.04
volumes:
- .:/root/wkhtmltopdf_binary_gem
ubuntu_18.04:
build:
context: .
dockerfile: .docker/Dockerfile-ubuntu_18.04
volumes:
- .:/root/wkhtmltopdf_binary_gem
ubuntu_20.04:
build:
context: .
dockerfile: .docker/Dockerfile-ubuntu_20.04
volumes:
- .:/root/wkhtmltopdf_binary_gem
ubuntu_22.04:
build:
context: .
dockerfile: .docker/Dockerfile-ubuntu_22.04
volumes:
- .:/root/wkhtmltopdf_binary_gem
debian_9:
build:
context: .
dockerfile: .docker/Dockerfile-debian_9
volumes:
- .:/root/wkhtmltopdf_binary_gem
debian_10:
build:
context: .
dockerfile: .docker/Dockerfile-debian_10
volumes:
- .:/root/wkhtmltopdf_binary_gem
debian_11:
build:
context: .
dockerfile: .docker/Dockerfile-debian_11
volumes:
- .:/root/wkhtmltopdf_binary_gem
debian_12:
build:
context: .
dockerfile: .docker/Dockerfile-debian_12
volumes:
- .:/root/wkhtmltopdf_binary_gem
centos_6:
build:
context: .
dockerfile: .docker/Dockerfile-centos_6
volumes:
- .:/root/wkhtmltopdf_binary_gem
centos_7:
build:
context: .
dockerfile: .docker/Dockerfile-centos_7
volumes:
- .:/root/wkhtmltopdf_binary_gem
centos_8:
build:
context: .
dockerfile: .docker/Dockerfile-centos_8
volumes:
- .:/root/wkhtmltopdf_binary_gem
oraclelinux_8:
build:
context: .
dockerfile: .docker/Dockerfile-oraclelinux_8
volumes:
- .:/root/wkhtmltopdf_binary_gem
rockylinux_8:
build:
context: .
dockerfile: .docker/Dockerfile-rockylinux_8
volumes:
- .:/root/wkhtmltopdf_binary_gem
almalinux_8:
build:
context: .
dockerfile: .docker/Dockerfile-almalinux_8
volumes:
- .:/root/wkhtmltopdf_binary_gem
archlinux:
build:
context: .
dockerfile: .docker/Dockerfile-archlinux
volumes:
- .:/root/wkhtmltopdf_binary_gem