We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdb307f commit 9fa5206Copy full SHA for 9fa5206
.gitignore
@@ -0,0 +1 @@
1
+.idea/
docker-compose.yml
@@ -0,0 +1,19 @@
+version: '3'
2
+services:
3
+ web:
4
+ environment:
5
+ - ENVIRONMENT=docker
6
+ - PHP_DEBUGGER=xdebug
7
+ - XDEBUG_REMOTE_PORT=9000
8
+ - XDEBUG_REMOTE_AUTOSTART=0
9
+ - XDEBUG_REMOTE_CONNECT_BACK=0
10
+ - php.memory_limit=64M
11
+ - FPM_PM_MAX_CHILDREN=8
12
+ - FPM_PM_START_SERVERS=8
13
+ - FPM_PM_MIN_SPARE_SERVERS=7
14
+ - FPM_PM_MAX_SPARE_SERVERS=8
15
+ image: webdevops/php-nginx-dev:7.1
16
+ ports:
17
+ - "80:80"
18
+ volumes:
19
+ - ".:/app"
0 commit comments