-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
42 lines (42 loc) · 954 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
version: "3.8"
services:
php-8.1:
image: 'devpartitech/php:8.1-apache'
ports:
- "9081:80"
volumes:
- "./www/:/var/www/public"
extra_hosts:
- host.docker.internal:host-gateway
php-8.0:
image: 'devpartitech/php:8.0-apache'
ports:
- "9080:80"
volumes:
- "./www/:/var/www/public"
extra_hosts:
- host.docker.internal:host-gateway
php-7.4:
image: 'devpartitech/php:7.4-apache'
ports:
- "9074:80"
volumes:
- "./www/:/var/www/public"
extra_hosts:
- host.docker.internal:host-gateway
php-7.3:
image: 'devpartitech/php:7.3-apache'
ports:
- "9073:80"
volumes:
- "./www/:/var/www/public"
extra_hosts:
- host.docker.internal:host-gateway
php-7.2:
image: 'devpartitech/php:7.2-apache'
ports:
- "9072:80"
volumes:
- "./www/:/var/www/public"
extra_hosts:
- host.docker.internal:host-gateway