-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (47 loc) · 933 Bytes
/
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
version: '3'
services:
php56:
build:
context: .
dockerfile: ./docker/php56/Dockerfile
working_dir: /var/www/php
ports:
- 8080:80
volumes:
- ./src:/var/www/php
php70:
build:
context: .
dockerfile: ./docker/php70/Dockerfile
working_dir: /var/www/php
ports:
- 18080:80
volumes:
- ./src:/var/www/php
php74:
build:
context: .
dockerfile: ./docker/php74/Dockerfile
working_dir: /var/www/php
ports:
- 28080:80
volumes:
- ./src:/var/www/php
php80:
build:
context: .
dockerfile: ./docker/php80/Dockerfile
working_dir: /var/www/php
ports:
- 38080:80
volumes:
- ./src:/var/www/php
php80-jit:
build:
context: .
dockerfile: ./docker/php80-jit/Dockerfile
working_dir: /var/www/php
ports:
- 48080:80
volumes:
- ./src:/var/www/php