-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-docker.sh
executable file
·402 lines (365 loc) · 16.5 KB
/
setup-docker.sh
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
#!/bin/sh
AMPACHEDIR=$PWD
COMPOSERPATH="/usr/local/bin/composer"
if [ ! -f $COMPOSERPATH ]; then
COMPOSERPATH="$AMPACHEDIR/docker/composer"
wget -q -O $COMPOSERPATH https://getcomposer.org/download/latest-stable/composer.phar
chmod +x $COMPOSERPATH
fi
# php7.4
if [ ! -d $AMPACHEDIR/php74 ]; then
git clone -b master https://github.com/ampache/ampache.git php74
fi
if [ ! -f $AMPACHEDIR/php74/index.php ]; then
rm -rf $AMPACHEDIR/php74
git clone -b master https://github.com/ampache/ampache.git php74
fi
if [ ! -d $AMPACHEDIR/php74_squashed ]; then
git clone -b squashed https://github.com/ampache/ampache.git php74_squashed
fi
if [ ! -f $AMPACHEDIR/php74_squashed/index.php ]; then
rm -rf $AMPACHEDIR/php74_squashed
git clone -b squashed https://github.com/ampache/ampache.git php74_squashed
fi
# php8.0
if [ ! -d $AMPACHEDIR/php80 ]; then
git clone -b master https://github.com/ampache/ampache.git php80
fi
if [ ! -f $AMPACHEDIR/php80/index.php ]; then
rm -rf $AMPACHEDIR/php80
git clone -b master https://github.com/ampache/ampache.git php80
fi
if [ ! -d $AMPACHEDIR/php80_squashed ]; then
git clone -b squashed https://github.com/ampache/ampache.git php80_squashed
fi
if [ ! -f $AMPACHEDIR/php80_squashed/index.php ]; then
rm -rf $AMPACHEDIR/php80_squashed
git clone -b squashed https://github.com/ampache/ampache.git php80_squashed
fi
# php8.1
if [ ! -d $AMPACHEDIR/php81 ]; then
git clone -b master https://github.com/ampache/ampache.git php81
fi
if [ ! -f $AMPACHEDIR/php81/index.php ]; then
rm -rf $AMPACHEDIR/php81
git clone -b master https://github.com/ampache/ampache.git php81
fi
if [ ! -d $AMPACHEDIR/php81_squashed ]; then
git clone -b squashed https://github.com/ampache/ampache.git php81_squashed
fi
if [ ! -f $AMPACHEDIR/php81_squashed/index.php ]; then
rm -rf $AMPACHEDIR/php81_squashed
git clone -b squashed https://github.com/ampache/ampache.git php81_squashed
fi
# php8.2
if [ ! -d $AMPACHEDIR/php82 ]; then
git clone -b master https://github.com/ampache/ampache.git php82
fi
if [ ! -f $AMPACHEDIR/php82/index.php ]; then
rm -rf $AMPACHEDIR/php82
git clone -b master https://github.com/ampache/ampache.git php82
fi
if [ ! -d $AMPACHEDIR/php82_squashed ]; then
git clone -b squashed https://github.com/ampache/ampache.git php82_squashed
fi
if [ ! -f $AMPACHEDIR/php82_squashed/index.php ]; then
rm -rf $AMPACHEDIR/php82_squashed
git clone -b squashed https://github.com/ampache/ampache.git php82_squashed
fi
# php 7.4
cd $AMPACHEDIR/php74 && git reset --hard origin/master && git pull
rm -rf ./composer.lock vendor/* public/lib/components/* && php7.4 $COMPOSERPATH install
php7.4 $COMPOSERPATH install
find . -xtype l -exec rm {} \;
cp $AMPACHEDIR/extras/jquery.contextMenu.min.js.map ./public/lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/jquery.contextMenu.min.css.map ./public/lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/StringReader.php ./vendor/gettext/gettext/src/Utils/
cp -rf $AMPACHEDIR/extras/prettyphoto/* ./public/lib/components/prettyphoto
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/php74_squashed && git reset --hard origin/squashed && git pull
rm -rf ./composer.lock vendor/* ./lib/components/* ./docker/ && php7.4 $COMPOSERPATH install
php7.4 $COMPOSERPATH install
find . -xtype l -exec rm {} \;
cp $AMPACHEDIR/extras/jquery.contextMenu.min.js.map ./lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/jquery.contextMenu.min.css.map ./lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/StringReader.php ./vendor/gettext/gettext/src/Utils/
cp -rf $AMPACHEDIR/extras/prettyphoto/* ./lib/components/prettyphoto
find . -name "*.map.1" -exec rm {} \;
# php 8.0
cd $AMPACHEDIR/php80 && git reset --hard origin/master && git pull
rm -rf ./composer.lock vendor/* public/lib/components/* && php8.0 $COMPOSERPATH install
php8.0 $COMPOSERPATH install
find . -xtype l -exec rm {} \;
cp $AMPACHEDIR/extras/jquery.contextMenu.min.js.map ./public/lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/jquery.contextMenu.min.css.map ./public/lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/StringReader.php ./vendor/gettext/gettext/src/Utils/
cp -rf $AMPACHEDIR/extras/prettyphoto/* ./public/lib/components/prettyphoto
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/php80_squashed && git reset --hard origin/squashed && git pull
rm -rf ./composer.lock vendor/* ./lib/components/* ./docker/ && php8.0 $COMPOSERPATH install
php8.0 $COMPOSERPATH install
find . -xtype l -exec rm {} \;
cp $AMPACHEDIR/extras/jquery.contextMenu.min.js.map ./lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/jquery.contextMenu.min.css.map ./lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/StringReader.php ./vendor/gettext/gettext/src/Utils/
cp -rf $AMPACHEDIR/extras/prettyphoto/* ./lib/components/prettyphoto
find . -name "*.map.1" -exec rm {} \;
# php 8.1
cd $AMPACHEDIR/php81 && git reset --hard origin/master && git pull
rm -rf ./composer.lock vendor/* public/lib/components/* && php8.1 $COMPOSERPATH install
php8.1 $COMPOSERPATH install
find . -xtype l -exec rm {} \;
cp $AMPACHEDIR/extras/jquery.contextMenu.min.js.map ./public/lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/jquery.contextMenu.min.css.map ./public/lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/StringReader.php ./vendor/gettext/gettext/src/Utils/
cp -rf $AMPACHEDIR/extras/prettyphoto/* ./public/lib/components/prettyphoto
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/php81_squashed && git reset --hard origin/squashed && git pull
rm -rf ./composer.lock vendor/* ./lib/components/* ./docker/ && php8.1 $COMPOSERPATH install
php8.1 $COMPOSERPATH install
find . -xtype l -exec rm {} \;
cp $AMPACHEDIR/extras/jquery.contextMenu.min.js.map ./lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/jquery.contextMenu.min.css.map ./lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/StringReader.php ./vendor/gettext/gettext/src/Utils/
cp -rf $AMPACHEDIR/extras/prettyphoto/* ./lib/components/prettyphoto
find . -name "*.map.1" -exec rm {} \;
# php 8.2
cd $AMPACHEDIR/php82 && git reset --hard origin/master && git pull
cp -f $AMPACHEDIR/extras/composer_php8.2.json ./composer.json
rm -rf ./composer.lock vendor/* public/lib/components/* && php8.2 $COMPOSERPATH install
php8.2 $COMPOSERPATH install
find . -xtype l -exec rm {} \;
cp $AMPACHEDIR/extras/jquery.contextMenu.min.js.map ./public/lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/jquery.contextMenu.min.css.map ./public/lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/StringReader.php ./vendor/gettext/gettext/src/Utils/
cp -rf $AMPACHEDIR/extras/prettyphoto/* ./public/lib/components/prettyphoto
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/php82_squashed && git reset --hard origin/squashed && git pull
cp -f $AMPACHEDIR/extras/composer_php8.2_squashed.json ./composer.json
rm -rf ./composer.lock vendor/* ./lib/components/* ./docker/ && php8.2 $COMPOSERPATH install
php8.2 $COMPOSERPATH install
find . -xtype l -exec rm {} \;
cp $AMPACHEDIR/extras/jquery.contextMenu.min.js.map ./lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/jquery.contextMenu.min.css.map ./lib/components/jquery-contextmenu/dist/
cp $AMPACHEDIR/extras/StringReader.php ./vendor/gettext/gettext/src/Utils/
cp -rf $AMPACHEDIR/extras/prettyphoto/* ./lib/components/prettyphoto
find . -name "*.map.1" -exec rm {} \;
# create the htaccess files
# php7.4
if [ ! -f $AMPACHEDIR/php74/public/channel/.htaccess ]; then
cp $AMPACHEDIR/php74/public/channel/.htaccess.dist $AMPACHEDIR/php74/public/channel/.htaccess
fi
if [ ! -f $AMPACHEDIR/php74/public/play/.htaccess ]; then
cp $AMPACHEDIR/php74/public/play/.htaccess.dist $AMPACHEDIR/php74/public/play/.htaccess
fi
if [ ! -f $AMPACHEDIR/php74/public/rest/.htaccess ]; then
cp $AMPACHEDIR/php74/public/rest/.htaccess.dist $AMPACHEDIR/php74/public/rest/.htaccess
fi
if [ ! -f $AMPACHEDIR/php74_squashed/channel/.htaccess ]; then
cp $AMPACHEDIR/php74_squashed/channel/.htaccess.dist $AMPACHEDIR/php74_squashed/channel/.htaccess
fi
if [ ! -f $AMPACHEDIR/php74_squashed/play/.htaccess ]; then
cp $AMPACHEDIR/php74_squashed/play/.htaccess.dist $AMPACHEDIR/php74_squashed/play/.htaccess
fi
if [ ! -f $AMPACHEDIR/php74_squashed/rest/.htaccess ]; then
cp $AMPACHEDIR/php74_squashed/rest/.htaccess.dist $AMPACHEDIR/php74_squashed/rest/.htaccess
fi
# php8.0
if [ ! -f $AMPACHEDIR/php80/public/channel/.htaccess ]; then
cp $AMPACHEDIR/php80/public/channel/.htaccess.dist $AMPACHEDIR/php80/public/channel/.htaccess
fi
if [ ! -f $AMPACHEDIR/php80/public/play/.htaccess ]; then
cp $AMPACHEDIR/php80/public/play/.htaccess.dist $AMPACHEDIR/php80/public/play/.htaccess
fi
if [ ! -f $AMPACHEDIR/php80/public/rest/.htaccess ]; then
cp $AMPACHEDIR/php80/public/rest/.htaccess.dist $AMPACHEDIR/php80/public/rest/.htaccess
fi
if [ ! -f $AMPACHEDIR/php80_squashed/channel/.htaccess ]; then
cp $AMPACHEDIR/php80_squashed/channel/.htaccess.dist $AMPACHEDIR/php80_squashed/channel/.htaccess
fi
if [ ! -f $AMPACHEDIR/php80_squashed/play/.htaccess ]; then
cp $AMPACHEDIR/php80_squashed/play/.htaccess.dist $AMPACHEDIR/php80_squashed/play/.htaccess
fi
if [ ! -f $AMPACHEDIR/php80_squashed/rest/.htaccess ]; then
cp $AMPACHEDIR/php80_squashed/rest/.htaccess.dist $AMPACHEDIR/php80_squashed/rest/.htaccess
fi
# php8.1
if [ ! -f $AMPACHEDIR/php81/public/channel/.htaccess ]; then
cp $AMPACHEDIR/php81/public/channel/.htaccess.dist $AMPACHEDIR/php81/public/channel/.htaccess
fi
if [ ! -f $AMPACHEDIR/php81/public/play/.htaccess ]; then
cp $AMPACHEDIR/php81/public/play/.htaccess.dist $AMPACHEDIR/php81/public/play/.htaccess
fi
if [ ! -f $AMPACHEDIR/php81/public/rest/.htaccess ]; then
cp $AMPACHEDIR/php81/public/rest/.htaccess.dist $AMPACHEDIR/php81/public/rest/.htaccess
fi
if [ ! -f $AMPACHEDIR/php81_squashed/channel/.htaccess ]; then
cp $AMPACHEDIR/php81_squashed/channel/.htaccess.dist $AMPACHEDIR/php81_squashed/channel/.htaccess
fi
if [ ! -f $AMPACHEDIR/php81_squashed/play/.htaccess ]; then
cp $AMPACHEDIR/php81_squashed/play/.htaccess.dist $AMPACHEDIR/php81_squashed/play/.htaccess
fi
if [ ! -f $AMPACHEDIR/php81_squashed/rest/.htaccess ]; then
cp $AMPACHEDIR/php81_squashed/rest/.htaccess.dist $AMPACHEDIR/php81_squashed/rest/.htaccess
fi
# php8.2
if [ ! -f $AMPACHEDIR/php82/public/channel/.htaccess ]; then
cp $AMPACHEDIR/php82/public/channel/.htaccess.dist $AMPACHEDIR/php82/public/channel/.htaccess
fi
if [ ! -f $AMPACHEDIR/php82/public/play/.htaccess ]; then
cp $AMPACHEDIR/php82/public/play/.htaccess.dist $AMPACHEDIR/php82/public/play/.htaccess
fi
if [ ! -f $AMPACHEDIR/php82/public/rest/.htaccess ]; then
cp $AMPACHEDIR/php82/public/rest/.htaccess.dist $AMPACHEDIR/php82/public/rest/.htaccess
fi
if [ ! -f $AMPACHEDIR/php82_squashed/channel/.htaccess ]; then
cp $AMPACHEDIR/php82_squashed/channel/.htaccess.dist $AMPACHEDIR/php82_squashed/channel/.htaccess
fi
if [ ! -f $AMPACHEDIR/php82_squashed/play/.htaccess ]; then
cp $AMPACHEDIR/php82_squashed/play/.htaccess.dist $AMPACHEDIR/php82_squashed/play/.htaccess
fi
if [ ! -f $AMPACHEDIR/php82_squashed/rest/.htaccess ]; then
cp $AMPACHEDIR/php82_squashed/rest/.htaccess.dist $AMPACHEDIR/php82_squashed/rest/.htaccess
fi
# create the docker volume folders
if [ ! -d $AMPACHEDIR/docker/log ]; then
mkdir $AMPACHEDIR/docker/log
fi
if [ ! -d $AMPACHEDIR/docker/media ]; then
mkdir $AMPACHEDIR/docker/media
fi
if [ ! -d $AMPACHEDIR/docker/mysql ]; then
mkdir $AMPACHEDIR/docker/mysql
fi
# reset perms
chown $UID:33 $AMPACHEDIR/docker/log
chmod 775 $AMPACHEDIR/docker/log
chown $UID:33 $AMPACHEDIR/docker/media
chmod 775 $AMPACHEDIR/docker/media
# php7.4
chown $UID:33 $AMPACHEDIR/php74/composer.json
chmod 775 $AMPACHEDIR/php74/composer.json
chown -R $UID:33 $AMPACHEDIR/php74/config
chmod -R 775 $AMPACHEDIR/php74/config
chown -R $UID:33 $AMPACHEDIR/php74/vendor/
chmod -R 775 $AMPACHEDIR/php74/vendor/
chown -R $UID:33 $AMPACHEDIR/php74/public/
chmod -R 775 $AMPACHEDIR/php74/public/
chown $UID:33 $AMPACHEDIR/php74_squashed/composer.json
chmod 775 $AMPACHEDIR/php74_squashed/composer.json
chown -R $UID:33 $AMPACHEDIR/php74_squashed/config
chmod -R 775 $AMPACHEDIR/php74_squashed/config
chown -R $UID:33 $AMPACHEDIR/php74_squashed/vendor/
chmod -R 775 $AMPACHEDIR/php74_squashed/vendor/
chown -R $UID:33 $AMPACHEDIR/php74_squashed/
chmod -R 775 $AMPACHEDIR/php74_squashed/
# php8.0
chown $UID:33 $AMPACHEDIR/php80/composer.json
chmod 775 $AMPACHEDIR/php80/composer.json
chown -R $UID:33 $AMPACHEDIR/php80/config
chmod -R 775 $AMPACHEDIR/php80/config
chown -R $UID:33 $AMPACHEDIR/php80/vendor/
chmod -R 775 $AMPACHEDIR/php80/vendor/
chown -R $UID:33 $AMPACHEDIR/php80/public/
chmod -R 775 $AMPACHEDIR/php80/public/
chown $UID:33 $AMPACHEDIR/php80_squashed/composer.json
chmod 775 $AMPACHEDIR/php80_squashed/composer.json
chown -R $UID:33 $AMPACHEDIR/php80_squashed/config
chmod -R 775 $AMPACHEDIR/php80_squashed/config
chown -R $UID:33 $AMPACHEDIR/php80_squashed/vendor/
chmod -R 775 $AMPACHEDIR/php80_squashed/vendor/
chown -R $UID:33 $AMPACHEDIR/php80_squashed/
chmod -R 775 $AMPACHEDIR/php80_squashed/
# php8.1
chown $UID:33 $AMPACHEDIR/php81/composer.json
chmod 775 $AMPACHEDIR/php81/composer.json
chown -R $UID:33 $AMPACHEDIR/php81/config
chmod -R 775 $AMPACHEDIR/php81/config
chown -R $UID:33 $AMPACHEDIR/php81/vendor/
chmod -R 775 $AMPACHEDIR/php81/vendor/
chown -R $UID:33 $AMPACHEDIR/php81/public/
chmod -R 775 $AMPACHEDIR/php81/public/
chown $UID:33 $AMPACHEDIR/php81_squashed/composer.json
chmod 775 $AMPACHEDIR/php81_squashed/composer.json
chown -R $UID:33 $AMPACHEDIR/php81_squashed/config
chmod -R 775 $AMPACHEDIR/php81_squashed/config
chown -R $UID:33 $AMPACHEDIR/php81_squashed/vendor/
chmod -R 775 $AMPACHEDIR/php81_squashed/vendor/
chown -R $UID:33 $AMPACHEDIR/php81_squashed/
chmod -R 775 $AMPACHEDIR/php81_squashed/
# php8.2
chown $UID:33 $AMPACHEDIR/php82/composer.json
chmod 775 $AMPACHEDIR/php82/composer.json
chown -R $UID:33 $AMPACHEDIR/php82/config
chmod -R 775 $AMPACHEDIR/php82/config
chown -R $UID:33 $AMPACHEDIR/php82/vendor/
chmod -R 775 $AMPACHEDIR/php82/vendor/
chown -R $UID:33 $AMPACHEDIR/php82/public/
chmod -R 775 $AMPACHEDIR/php82/public/
chown $UID:33 $AMPACHEDIR/php82_squashed/composer.json
chmod 775 $AMPACHEDIR/php82_squashed/composer.json
chown -R $UID:33 $AMPACHEDIR/php82_squashed/config
chmod -R 775 $AMPACHEDIR/php82_squashed/config
chown -R $UID:33 $AMPACHEDIR/php82_squashed/vendor/
chmod -R 775 $AMPACHEDIR/php82_squashed/vendor/
chown -R $UID:33 $AMPACHEDIR/php82_squashed/
chmod -R 775 $AMPACHEDIR/php82_squashed/
# remove the lock and install composer packages
# php7.4
if [ -f $AMPACHEDIR/php74/composer.lock ]; then
rm $AMPACHEDIR/php74/composer.lock
fi
cd $AMPACHEDIR/php74 && php7.4 $COMPOSERPATH install && cd $AMPACHEDIR
if [ -f $AMPACHEDIR/php74_squashed/composer.lock ]; then
rm $AMPACHEDIR/php74_squashed/composer.lock
fi
cd $AMPACHEDIR/php74_squashed && php7.4 $COMPOSERPATH install && cd $AMPACHEDIR
# php8.0
if [ -f $AMPACHEDIR/php80/composer.lock ]; then
rm $AMPACHEDIR/php80/composer.lock
fi
cd $AMPACHEDIR/php80 && php8.0 $COMPOSERPATH install && cd $AMPACHEDIR
if [ -f $AMPACHEDIR/php80_squashed/composer.lock ]; then
rm $AMPACHEDIR/php80_squashed/composer.lock
fi
cd $AMPACHEDIR/php80 && php8.0 $COMPOSERPATH install && cd $AMPACHEDIR
# php8.1
if [ -f $AMPACHEDIR/php81/composer.lock ]; then
rm $AMPACHEDIR/php81/composer.lock
fi
cd $AMPACHEDIR/php81 && php8.1 $COMPOSERPATH install && cd $AMPACHEDIR
if [ -f $AMPACHEDIR/php81_squashed/composer.lock ]; then
rm $AMPACHEDIR/php81_squashed/composer.lock
fi
cd $AMPACHEDIR/php81 && php8.1 $COMPOSERPATH install && cd $AMPACHEDIR
# php8.2
if [ -f $AMPACHEDIR/php82/composer.lock ]; then
rm $AMPACHEDIR/php82/composer.lock
fi
cd $AMPACHEDIR/php82 && php8.1 $COMPOSERPATH install && cd $AMPACHEDIR
if [ -f $AMPACHEDIR/php82_squashed/composer.lock ]; then
rm $AMPACHEDIR/php82_squashed/composer.lock
fi
cd $AMPACHEDIR/php82 && php8.1 $COMPOSERPATH install && cd $AMPACHEDIR
chown $UID:33 $AMPACHEDIR/docker/log
chmod 775 $AMPACHEDIR/docker/log
chown $UID:33 $AMPACHEDIR/docker/media
chmod 775 $AMPACHEDIR/docker/media
chown $UID:112 $AMPACHEDIR/docker/mysql
chmod 775 $AMPACHEDIR/docker/mysql
chown $UID:33 $AMPACHEDIR/php74
chmod 775 $AMPACHEDIR/php74
chown $UID:33 $AMPACHEDIR/php74_squashed
chmod 775 $AMPACHEDIR/php74_squashed
chown $UID:33 $AMPACHEDIR/php80
chmod 775 $AMPACHEDIR/php80
chown $UID:33 $AMPACHEDIR/php80_squashed
chmod 775 $AMPACHEDIR/php80_squashed
chown $UID:33 $AMPACHEDIR/php81
chmod 775 $AMPACHEDIR/php81
chown $UID:33 $AMPACHEDIR/php81_squashed
chmod 775 $AMPACHEDIR/php81_squashed
chown $UID:33 $AMPACHEDIR/php82
chmod 775 $AMPACHEDIR/php82
chown $UID:33 $AMPACHEDIR/php82_squashed
chmod 775 $AMPACHEDIR/php82_squashed