-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
50 lines (40 loc) · 1.05 KB
/
docker-compose.yaml
File metadata and controls
50 lines (40 loc) · 1.05 KB
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
x-php-service-base: &php-service-base
deploy:
replicas: 0
volumes:
- ./src:/usr/src/app/src
- ./tests:/usr/src/app/tests
- ./composer.bridgeless.json:/usr/src/app/composer.bridgeless.json
environment:
PHP_EXTENSION_PGSQL: 1
PHP_EXTENSION_PDO_PGSQL: 1
services:
php80:
<<: *php-service-base
image: thecodingmachine/php:8.0-v5-cli
php81:
<<: *php-service-base
image: thecodingmachine/php:8.1-v5-cli
php82:
<<: *php-service-base
image: thecodingmachine/php:8.2-v5-cli
php83:
<<: *php-service-base
image: thecodingmachine/php:8.3-v5-cli
php84:
<<: *php-service-base
image: thecodingmachine/php:8.4-v5-cli
php85:
<<: *php-service-base
image: thecodingmachine/php:8.5-v5-cli
postgres:
image: postgres:9.6
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: nextras_migrations_test
mysql:
image: mysql:5.6
environment:
MYSQL_DATABASE: nextras_migrations_test
MYSQL_ROOT_PASSWORD: root