-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
38 lines (34 loc) · 1.14 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
###############################################################################
# Generated on phpdocker.io #
###############################################################################
version: "3.1"
services:
mysql:
image: mysql:5.7
container_name: mylius-spuren-de-mysql
working_dir: /application
volumes:
- ./app/mylius-spuren:/application
environment:
- MYSQL_ROOT_PASSWORD=secret
- MYSQL_DATABASE=mylius
- MYSQL_USER=user
- MYSQL_PASSWORD=secret
ports:
- "8082:3306"
webserver:
image: nginx:alpine
container_name: mylius-spuren-de-webserver
working_dir: /application
volumes:
- ./app/mylius-spuren:/application
- ./docker/nginx/nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- "8083:80"
php-fpm:
build: docker/php-fpm
container_name: mylius-spuren-de-php-fpm
working_dir: /application
volumes:
- ./app/mylius-spuren:/application
- ./docker/php-fpm/php-ini-overrides.ini:/etc/php/7.2/fpm/conf.d/99-overrides.ini