generated from Broodco/php_docker_mysql_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
33 lines (31 loc) · 1.08 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
###############################################################################
# Generated on phpdocker.io #
###############################################################################
version: '3.1'
services:
mysql:
image: 'mysql:8.0'
working_dir: /application
volumes:
- './src:/application'
environment:
- MYSQL_ROOT_PASSWORD=pass1234
- MYSQL_DATABASE=php-playground
- MYSQL_USER=playground-user
- MYSQL_PASSWORD=playground-pass1234
ports:
- '3002:3306'
webserver:
image: 'nginx:alpine'
working_dir: /application
volumes:
- './src:/application'
- './phpdocker/nginx/nginx.conf:/etc/nginx/conf.d/default.conf'
ports:
- '3000:80'
php-fpm:
build: phpdocker/php-fpm
working_dir: /application
volumes:
- './src:/application'
- './phpdocker/php-fpm/php-ini-overrides.ini:/etc/php/8.1/fpm/conf.d/99-overrides.ini'