-
-
Notifications
You must be signed in to change notification settings - Fork 192
/
docker-compose.yml
97 lines (91 loc) · 2.43 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
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
services:
php:
image: wodby/drupal-php:${PHP_VERSION}
environment:
DB_HOST: db
DB_USER: drupal
DB_PASSWORD: drupal
DB_NAME: drupal
DB_DRIVER: mysql
PHP_FPM_USER: wodby
PHP_FPM_GROUP: wodby
PHP_FPM_CLEAR_ENV: "yes"
PHP_OPCACHE_PRELOAD_USER: wodby
PHP_XDEBUG_MODE: "off"
PHP_XDEBUG_REMOTE_CONNECT_BACK: 1
PHP_XDEBUG_REMOTE_HOST: "10.254.254.254"
PHP_XDEBUG_IDEKEY: "PHPSTORM"
PHP_IDE_CONFIG: "serverName=drupalextension"
volumes:
- ./:/var/www/html
labels:
- "traefik.enable=false"
depends_on:
- proxy
proxy:
image: traefik:v2.10
command:
- "--api.insecure=true"
- "--providers.docker"
- "--entrypoints.http-80.address=:80"
- "--entrypoints.http-443.address=:443"
ports:
- "80:80"
- "443:443"
# The Web UI (enabled by --api.insecure=true)
- "8080:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
labels:
- "traefik.enable=false"
drupal:
image: wodby/nginx
depends_on:
- php
environment:
NGINX_STATIC_OPEN_FILE_CACHE: "off"
NGINX_ERROR_LOG_LEVEL: debug
NGINX_BACKEND_HOST: php
NGINX_SERVER_ROOT: /var/www/html/drupal
NGINX_VHOST_PRESET: drupal10
volumes:
- ./:/var/www/html
labels:
- "traefik.http.routers.drupal.rule=Host(`proxy`)"
- "traefik.http.routers.drupal.entrypoints=http-80"
- "traefik.http.routers.drupal-secure.rule=Host(`proxy`)"
- "traefik.http.routers.drupal-secure.tls=true"
- "traefik.http.routers.drupal-secure.entrypoints=http-443"
blackbox:
image: wodby/nginx
environment:
NGINX_STATIC_OPEN_FILE_CACHE: "off"
NGINX_ERROR_LOG_LEVEL: debug
NGINX_SERVER_ROOT: /var/www/html/fixtures/blackbox
NGINX_VHOST_PRESET: html
volumes:
- ./:/var/www/html
labels:
- "traefik.enable=false"
db:
image: wodby/mariadb:10.6-3.28.3
stop_grace_period: 30s
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: drupal
MYSQL_USER: drupal
MYSQL_PASSWORD: drupal
labels:
- "traefik.enable=false"
node:
image: node:latest
user: "node"
working_dir: /home/node/app
environment:
- NODE_ENV="production npm run production"
- SHELL=bash
volumes:
- ./:/home/node/app
command: "sleep infinity"
labels:
- "traefik.enable=false"