forked from icomefromthenet/ReverseRegex
-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yaml
50 lines (49 loc) · 950 Bytes
/
docker-compose.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
version: "3.8"
services:
php74: &common
image: reverse-regex:php-7.2
build: &build
dockerfile: php.Dockerfile
context: .docker
args:
- BASE=php:7.4-cli-alpine
tty: true
volumes:
- .:/usr/app
user: "1000:1000"
working_dir: /usr/app
php80:
<<: *common
image: reverse-regex:php-8.0
build:
<<: *build
args:
- BASE=php:8.0-cli-alpine
php81:
<<: *common
image: reverse-regex:php-8.1
build:
<<: *build
args:
- BASE=php:8.1-cli-alpine
php82:
<<: *common
image: reverse-regex:php-8.2
build:
<<: *build
args:
- BASE=php:8.2-cli-alpine
php83:
<<: *common
image: reverse-regex:php-8.3
build:
<<: *build
args:
- BASE=php:8.3-cli-alpine
php84:
<<: *common
image: reverse-regex:php-8.4
build:
<<: *build
args:
- BASE=php:8.4-cli-alpine