forked from tobiasKaminsky/nextcloud-client-testing-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
224 lines (215 loc) · 4.42 KB
/
Copy pathdocker-compose.yml
File metadata and controls
224 lines (215 loc) · 4.42 KB
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
services:
nextcloud-ephemeral-master:
build:
context: .
args:
BRANCH: master
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable16:
build:
context: .
dockerfile: php7.2.Dockerfile
args:
BRANCH: stable16
BRANCH_MAIN: stable16
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable17:
build:
context: .
dockerfile: php7.2.Dockerfile
args:
BRANCH: stable17
BRANCH_MAIN: stable17
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable18:
build:
context: .
dockerfile: php7.2.Dockerfile
args:
BRANCH: stable18
BRANCH_MAIN: stable18
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable19:
build:
context: .
dockerfile: php7.2.Dockerfile
args:
BRANCH: stable19
BRANCH_MAIN: stable19
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable20:
build:
context: .
dockerfile: php7.4.Dockerfile
args:
BRANCH: stable20
BRANCH_MAIN: stable20
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable21:
build:
context: .
dockerfile: php7.4.Dockerfile
args:
BRANCH: stable21
BRANCH_MAIN: stable21
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable22:
build:
context: .
dockerfile: php7.4.Dockerfile
args:
BRANCH: stable22
BRANCH_MAIN: stable22
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable23:
build:
context: .
dockerfile: php7.4.Dockerfile
args:
BRANCH: stable23
BRANCH_MAIN: stable23
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable24:
build:
context: .
dockerfile: php7.4.Dockerfile
args:
BRANCH: stable24
BRANCH_MAIN: stable24
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable25:
build:
context: .
args:
BRANCH: stable25
BRANCH_MAIN: stable25
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable26:
build:
context: .
args:
BRANCH: stable26
BRANCH_MAIN: stable26
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable27:
build:
context: .
args:
BRANCH: stable27
BRANCH_MAIN: stable27
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable28:
build:
context: .
args:
BRANCH: stable28
BRANCH_MAIN: stable28
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable29:
build:
context: .
args:
BRANCH: stable29
BRANCH_MAIN: stable29
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable30:
build:
context: .
args:
BRANCH: stable30
BRANCH_MAIN: stable30
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable31:
build:
context: .
args:
BRANCH: stable31
BRANCH_MAIN: stable31
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable32:
build:
context: .
args:
BRANCH: stable32
BRANCH_MAIN: stable32
ports:
- "${PORT}:80"
nextcloud-ephemeral-stable33:
build:
context: .
args:
BRANCH: stable33
BRANCH_MAIN: stable33
ports:
- "${PORT}:80"
nextcloud-longlived-stable25:
build:
context: .
args:
BRANCH: stable25
BRANCH_MAIN: stable25
ports:
- "${PORT}:80"
restart: always
volumes:
- nextcloud-stable:/var/www/html
- apps-stable:/var/www/html/custom_apps
- config-stable:/var/www/html/config
- data-stable:/var/www/html/data
nextcloud-talk-stable:
build:
context: .
dockerfile: talk.Dockerfile
args:
BRANCH: stable25
BRANCH_MAIN: stable25
ports:
- "${PORT}:80"
volumes:
- nextcloud-talk:/var/www/html
- apps-talk:/var/www/html/custom_apps
- config-talk:/var/www/html/config
- data-talk:/var/www/html/data
nextcloud-talk-master:
build:
context: .
dockerfile: talk.Dockerfile
args:
BRANCH: master
ports:
- "${PORT}:80"
nextcloud-ci-master:
build:
context: .
dockerfile: ci-master.Dockerfile
args:
BRANCH: master
BRANCH_MAIN: master
ports:
- "${PORT}:80"
volumes:
nextcloud-stable:
apps-stable:
config-stable:
data-stable:
nextcloud-talk:
apps-talk:
config-talk:
data-talk: