Skip to content

Commit 9fa5206

Browse files
committed
Added gitignore (idea)
docker compose for testing
1 parent cdb307f commit 9fa5206

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea/

docker-compose.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
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

Comments
 (0)