-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
130 lines (118 loc) · 2.95 KB
/
docker-compose.yml
File metadata and controls
130 lines (118 loc) · 2.95 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# itk-version: 3.2.4
networks:
frontend:
external: true
app:
driver: bridge
internal: false
services:
phpfpm:
image: itkdev/php8.3-fpm:latest
user: ${COMPOSE_USER:-deploy}
networks:
- app
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
- PHP_XDEBUG_MODE=${PHP_XDEBUG_MODE:-off}
- PHP_MAX_EXECUTION_TIME=30
- PHP_MEMORY_LIMIT=256M
# Depending on the setup, you may have to remove --read-envelope-from from msmtp (cf. https://marlam.de/msmtp/msmtp.html) or use SMTP to send mail
- PHP_SENDMAIL_PATH=/usr/bin/msmtp --host=mail --port=1025 --read-recipients --read-envelope-from
- DOCKER_HOST_DOMAIN=${COMPOSE_DOMAIN:?}
- PHP_IDE_CONFIG=serverName=localhost
volumes:
- .:/app
- composer-cache:/home/deploy/.composer/cache
phpfpm84:
extends:
service: phpfpm
image: itkdev/php8.4-fpm:latest
profiles:
- ci
phpfpm85:
extends:
service: phpfpm
image: itkdev/php8.5-fpm:latest
profiles:
- ci
# Test matrix services (PHP version × dependency set)
phpfpm83-stable:
extends:
service: phpfpm
profiles:
- ci
volumes:
- .:/app
- phpfpm83-stable-vendor:/app/vendor
- composer-cache:/home/deploy/.composer/cache
phpfpm83-lowest:
extends:
service: phpfpm
profiles:
- ci
volumes:
- .:/app
- phpfpm83-lowest-vendor:/app/vendor
- composer-cache:/home/deploy/.composer/cache
phpfpm84-stable:
extends:
service: phpfpm84
profiles:
- ci
volumes:
- .:/app
- phpfpm84-stable-vendor:/app/vendor
- composer-cache:/home/deploy/.composer/cache
phpfpm84-lowest:
extends:
service: phpfpm84
profiles:
- ci
volumes:
- .:/app
- phpfpm84-lowest-vendor:/app/vendor
- composer-cache:/home/deploy/.composer/cache
phpfpm85-stable:
extends:
service: phpfpm85
profiles:
- ci
volumes:
- .:/app
- phpfpm85-stable-vendor:/app/vendor
- composer-cache:/home/deploy/.composer/cache
phpfpm85-lowest:
extends:
service: phpfpm85
profiles:
- ci
volumes:
- .:/app
- phpfpm85-lowest-vendor:/app/vendor
- composer-cache:/home/deploy/.composer/cache
# Code checks tools
markdownlint:
image: itkdev/markdownlint
profiles:
- dev
volumes:
- ./:/md
prettier:
# Prettier does not (yet, fcf.
# https://github.com/prettier/prettier/issues/15206) have an official
# docker image.
# https://hub.docker.com/r/jauderho/prettier is good candidate (cf. https://hub.docker.com/search?q=prettier&sort=updated_at&order=desc)
image: jauderho/prettier
profiles:
- dev
volumes:
- ./:/work
volumes:
phpfpm83-stable-vendor:
phpfpm83-lowest-vendor:
phpfpm84-stable-vendor:
phpfpm84-lowest-vendor:
phpfpm85-stable-vendor:
phpfpm85-lowest-vendor:
composer-cache: