-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
38 lines (34 loc) · 914 Bytes
/
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
###############################################################################
# Generated on phpdocker.io #
###############################################################################
mailhog:
image: phpdockerio/mailhog:latest
ports:
- "8081:8025"
mysql:
image: mysql:5.7
environment:
- MYSQL_ROOT_PASSWORD=root-drupal
- MYSQL_DATABASE=drupal
- MYSQL_USER=drupal
- MYSQL_PASSWORD=drupal
volumes:
- ./dumps:/docker-entrypoint-initdb.d
webserver:
image: phpdockerio/nginx:latest
volumes:
- .:/var/www/drupal
- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- "80:80"
links:
- php-fpm
php-fpm:
build: .
dockerfile: php-fpm/Dockerfile
volumes:
- .:/var/www/drupal
- ./php-fpm/php-ini-overrides.ini:/etc/php/7.2/fpm/conf.d/99-overrides.ini
links:
- mailhog
- mysql