forked from m2mtech/flysystem-stream-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (39 loc) · 752 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
45 lines (39 loc) · 752 Bytes
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
version: "3.9"
services:
php8: &php
build:
context: .
dockerfile: docker/php8.0/Dockerfile
volumes:
- .:/app:delegated
- ~/.composer:/.composer:delegated
php81:
<<: *php
build:
context: .
dockerfile: docker/php8.1/Dockerfile
php82:
<<: *php
build:
context: .
dockerfile: docker/php8.2/Dockerfile
php83:
<<: *php
build:
context: .
dockerfile: docker/php8.3/Dockerfile
php74:
<<: *php
build:
context: .
dockerfile: docker/php7.4/Dockerfile
php73:
<<: *php
build:
context: .
dockerfile: docker/php7.3/Dockerfile
php72:
<<: *php
build:
context: .
dockerfile: docker/php7.2/Dockerfile