Merge pull request #421 from cytopia/update-php-container

Minor fixes
This commit is contained in:
cytopia 2018-11-11 16:43:58 +01:00 committed by GitHub
commit b45284bc0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 31 additions and 31 deletions

View File

@ -95,7 +95,7 @@ services:
# PHP / HHVM
# ------------------------------------------------------------
php:
image: devilbox/php-fpm:${PHP_SERVER:-7.0}-work-0.48
image: devilbox/php-fpm:${PHP_SERVER:-7.0}-work-0.50
##
## All .env variables

View File

@ -66,19 +66,19 @@ The following example show how to configure PHP Xdebug for PHP 5.6:
:caption: xdebug.ini
:emphasize-lines: 6-7,11
# Defaults
; Defaults
xdebug.remote_enable=1
xdebug.remote_port=9000
# The Docker Toolbox way
; The Docker Toolbox way
xdebug.remote_connect_back=0
xdebug.remote_host=docker.for.lin.host.internal
# idekey value is specific to each editor
# Verify with your IDE/editor documentation
; idekey value is specific to each editor
; Verify with your IDE/editor documentation
xdebug.idekey=PHPSTORM
# Optional: Set to true to auto-start xdebug
; Optional: Set to true to auto-start xdebug
xdebug.remote_autostart=false
**4. Configure your IDE/editor**

View File

@ -53,19 +53,19 @@ The following example show how to configure PHP Xdebug for PHP 5.6:
:caption: xdebug.ini
:emphasize-lines: 7,11
# Defaults
; Defaults
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_port=9000
# The Linux way
; The Linux way
xdebug.remote_connect_back=1
# idekey value is specific to each editor
# Verify with your IDE/editor documentation
; idekey value is specific to each editor
; Verify with your IDE/editor documentation
xdebug.idekey=PHPSTORM
# Optional: Set to true to auto-start xdebug
; Optional: Set to true to auto-start xdebug
xdebug.remote_autostart=false
**3. Configure your IDE/editor**

View File

@ -77,20 +77,20 @@ The following example show how to configure PHP Xdebug for PHP 5.6:
:caption: xdebug.ini
:emphasize-lines: 7-8,12
# Defaults
; Defaults
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_port=9000
# The MacOS way (CNAME)
; The MacOS way (CNAME)
xdebug.remote_connect_back=0
xdebug.remote_host=host.docker.internal
# idekey value is specific to each editor
# Verify IDE/editor documentation
; idekey value is specific to each editor
; Verify IDE/editor documentation
xdebug.idekey=PHPSTORM
# Optional: Set to true to auto-start xdebug
; Optional: Set to true to auto-start xdebug
xdebug.remote_autostart=false
**3. Configure your IDE/editor**
@ -141,20 +141,20 @@ The following example show how to configure PHP Xdebug for PHP 5.6:
:caption: xdebug.ini
:emphasize-lines: 7-8,12
# Defaults
; Defaults
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_port=9000
# The MacOS way (host alias)
; The MacOS way (host alias)
xdebug.remote_connect_back=0
xdebug.remote_host=10.254.254.254
# idekey value is specific to each editor
# Verify with your IDE/editor documentation
; idekey value is specific to each editor
; Verify with your IDE/editor documentation
xdebug.idekey=PHPSTORM
# Optional: Set to true to auto-start xdebug
; Optional: Set to true to auto-start xdebug
xdebug.remote_autostart=false
**3. Configure your IDE/editor**

View File

@ -70,20 +70,20 @@ The following example show how to configure PHP Xdebug for PHP 5.6:
:caption: xdebug.ini
:emphasize-lines: 7-8,12
# Defaults
; Defaults
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_port=9000
# The Windows way (CNAME)
; The Windows way (CNAME)
xdebug.remote_connect_back=0
xdebug.remote_host=host.docker.internal
# idekey value is specific to each editor
# Verify IDE/editor documentation
; idekey value is specific to each editor
; Verify IDE/editor documentation
xdebug.idekey=PHPSTORM
# Optional: Set to true to auto-start xdebug
; Optional: Set to true to auto-start xdebug
xdebug.remote_autostart=false
**3. Configure your IDE/editor**
@ -140,20 +140,20 @@ The following example show how to configure PHP Xdebug for PHP 5.6:
:caption: xdebug.ini
:emphasize-lines: 7-8,12
# Defaults
; Defaults
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_port=9000
# The Windows way (IP address)
; The Windows way (IP address)
xdebug.remote_connect_back=0
xdebug.remote_host=192.168.246.1
# idekey value is specific to each editor
# Verify IDE/editor documentation
; idekey value is specific to each editor
; Verify IDE/editor documentation
xdebug.idekey=PHPSTORM
# Optional: Set to true to auto-start xdebug
; Optional: Set to true to auto-start xdebug
xdebug.remote_autostart=false
.. important::