Skip to content
Snippets Groups Projects
Commit f4e4b49e authored by Ulf Seltmann's avatar Ulf Seltmann
Browse files

Merge branch '3-notices-wont-throw-in-debug-images' into 'master'

Resolve "notices wont throw in *-debug* images"

Closes #3

See merge request !4
parents f0ec9b7a 111026d0
Branches v6.1.1
1 merge request!4Resolve "notices wont throw in *-debug* images"
Pipeline #1710 canceled with stages
......@@ -17,5 +17,6 @@ RUN apk add --no-cache --update autoconf \
&& sed -i '1 a xdebug.remote_connect_back=1 ' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& sed -i '1 a xdebug.remote_port=9000' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& sed -i '1 a xdebug.remote_enable=1' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& echo 'error_reporting=E_ALL' >/usr/local/etc/php/conf.d/development.ini \
&& sed -e "s!^#\s*StrictHostKeyChecking ask!StrictHostKeyChecking no!" -i /etc/ssh/ssh_config \
&& chmod a+x /docker-entrypoint
......@@ -17,5 +17,6 @@ RUN apk add --no-cache --update autoconf \
&& sed -i '1 a xdebug.remote_connect_back=1 ' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& sed -i '1 a xdebug.remote_port=9000' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& sed -i '1 a xdebug.remote_enable=1' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& echo 'error_reporting=E_ALL' >/usr/local/etc/php/conf.d/development.ini \
&& sed -e "s!^#\s*StrictHostKeyChecking ask!StrictHostKeyChecking no!" -i /etc/ssh/ssh_config \
&& chmod a+x /docker-entrypoint
......@@ -17,5 +17,6 @@ RUN apk add --no-cache --update autoconf \
&& sed -i '1 a xdebug.remote_connect_back=1 ' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& sed -i '1 a xdebug.remote_port=9000' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& sed -i '1 a xdebug.remote_enable=1' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& echo 'error_reporting=E_ALL' >/usr/local/etc/php/conf.d/development.ini \
&& sed -e "s!^#\s*StrictHostKeyChecking ask!StrictHostKeyChecking no!" -i /etc/ssh/ssh_config \
&& chmod a+x /docker-entrypoint
......@@ -8,7 +8,7 @@ COPY assets/docker-entrypoint-debug /docker-entrypoint
RUN apk add --no-cache --update autoconf \
&& pear config-set http_proxy "`printenv http_proxy`" \
&& pecl install xdebug-2.7.0beta1 \
&& pecl install xdebug \
&& docker-php-ext-enable xdebug \
&& apk del autoconf \
&& sed -i '1 a xdebug.remote_autostart=true' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
......@@ -17,5 +17,6 @@ RUN apk add --no-cache --update autoconf \
&& sed -i '1 a xdebug.remote_connect_back=1 ' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& sed -i '1 a xdebug.remote_port=9000' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& sed -i '1 a xdebug.remote_enable=1' /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& echo 'error_reporting=E_ALL' >/usr/local/etc/php/conf.d/development.ini \
&& sed -e "s!^#\s*StrictHostKeyChecking ask!StrictHostKeyChecking no!" -i /etc/ssh/ssh_config \
&& chmod a+x /docker-entrypoint
# Changelog
## 2019-03-18
### {{7.2,7.1,5.6}-10}, 7.3-2
#### Added
* `error_reporting = E_ALL` -#3 [debug]
### 7.3-2
#### Changed
* stable xdebug
## 2019-01-09
### 7.3-1
#### initial release, is now `latest` and `7`
......
version: '2'
services:
docker:
image: docker:dind
privileged: true
deployer:
image: ubleipzig/deployer:1.4.4
depends_on:
- docker
user: root
working_dir: /app
environment:
DOCKER_HOST: docker
HTTP_PROXY: http://proxy.uni-leipzig.de:3128
HTTPS_PROXY: http://proxy.uni-leipzig.de:3128
FTP_PROXY: http://proxy.uni-leipzig.de:3128
NO_PROXY: 127.0.0.1,localhost,.uni-leipzig.de,docker
volumes:
- ./:/app
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment