-
Notifications
You must be signed in to change notification settings - Fork 31
/
docker-compose.yml
45 lines (39 loc) · 1.02 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
version: "3.1"
services:
mailhog:
image: mailhog/mailhog:latest
container_name: mailhog
ports:
- "8081:8025"
redis:
image: redis:alpine
container_name: redis
mysql:
image: mysql:5.7
container_name: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
working_dir: /application
volumes:
- .:/application
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=database
ports:
- "8082:3306"
webserver:
image: nginx:alpine
container_name: webserver
working_dir: /application
volumes:
- .:/application
- ./.docker/nginx/nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- "8080:80"
php-fpm:
build: .docker/php-fpm
container_name: php-fpm
working_dir: /application
volumes:
- .:/application
- ./.docker/php-fpm/php-ini-overrides.ini:/etc/php/7.3/fpm/conf.d/99-overrides.ini