forked from tigitz/php-spellchecker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (32 loc) 路 725 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
36 lines (32 loc) 路 725 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
version: '3.2'
services:
php7.1:
build: docker/php7.1
volumes:
- .:/usr/src/myapp
- ./cache:/root/composer/cache
environment:
- LANG=en_US.UTF-8
- COMPOSER_CACHE_DIR=/root/composer/cache
depends_on:
- languagetools
php7.2:
build: docker/php7.2
volumes:
- .:/usr/src/myapp
environment:
- LANG=en_US.UTF-8
- COMPOSER_CACHE_DIR=/root/composer/cache
depends_on:
- languagetools
php7.3:
build: docker/php7.3
volumes:
- .:/usr/src/myapp
environment:
- LANG=en_US.UTF-8
- COMPOSER_CACHE_DIR=/root/composer/cache
depends_on:
- languagetools
languagetools:
image: silviof/docker-languagetool