-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
50 lines (50 loc) · 1.02 KB
/
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
services:
php83:
container_name: yokai-batch-php83
environment:
PHP_XDEBUG: 1
extends:
file: $HOME/.led/docker-base.yaml
service: localuser
hostname: php83
image: ledup/php:8.3
volumes:
- .:/src
working_dir: /src
php81:
container_name: yokai-batch-php81
environment:
PHP_XDEBUG: 1
extends:
file: $HOME/.led/docker-base.yaml
service: localuser
hostname: php81
image: ledup/php:8.1
volumes:
- .:/src
working_dir: /src
php80:
container_name: yokai-batch-php80
environment:
PHP_XDEBUG: 1
extends:
file: $HOME/.led/docker-base.yaml
service: localuser
hostname: php80
image: ledup/php:8.0
volumes:
- .:/src
working_dir: /src
php74:
container_name: yokai-batch-php74
environment:
PHP_XDEBUG: 1
extends:
file: $HOME/.led/docker-base.yaml
service: localuser
hostname: php74
image: ledup/php:7.4
volumes:
- .:/src
working_dir: /src
version: '2'