-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
64 lines (56 loc) · 1.39 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
version: '2'
services:
webserver:
restart: always
image: dockerhub.ellerhold.de:5000/apache2.4
environment:
- "APACHE_VHOST_DOCUMENT_ROOT=/var/www/public"
- "APACHE_VHOST_INCLUDE=/var/www/config/vhost.conf"
- "APACHE_MOD_SECURITY2_MODE=Off"
- "APACHE_PHP_FPM_XDEBUG_HOST=php-xdebug"
volumes_from:
- php
ports:
- "443"
php:
restart: always
image: dockerhub.ellerhold.de:5000/php8.2-fpm
links:
- "redis:redis.local"
- "db:db.local"
php-xdebug:
restart: always
image: dockerhub.ellerhold.de:5000/php8.2-fpm-xdebug
volumes_from:
- php
links:
- "redis:redis.local"
- "db:db.local"
redis:
restart: always
image: dockerhub.ellerhold.de:5000/redis-cache
cron:
restart: always
image: dockerhub.ellerhold.de:5000/php8.2-cron
volumes_from:
- php
links:
- "redis:redis.local"
- "db:db.local"
db:
restart: always
image: dockerhub.ellerhold.de:5000/mariadb10.5
cli:
image: dockerhub.ellerhold.de:5000/php8.2-cli
volumes_from:
- php
links:
- "redis:redis.local"
- "db:db.local"
cli-xdebug:
image: dockerhub.ellerhold.de:5000/php8.2-cli-xdebug
volumes_from:
- php
links:
- "redis:redis.local"
- "db:db.local"