We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df2a5e5 commit d6fa9ffCopy full SHA for d6fa9ff
1 file changed
docker-src/cms/Dockerfile
@@ -133,7 +133,8 @@ RUN apk add --no-cache \
133
&& echo "xdebug.remote_autostart=on" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
134
# Remote connect_back only works on Linux systems because OSX abstracts it away into a VM
135
&& echo 'xdebug.remote_connect_back="${CONNECTBACK}"' >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
136
- && echo "xdebug.remote_host=192.168.65.1" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
+ # TODO: debug this solution on Windows
137
+ && echo "xdebug.remote_host=docker.for.mac.localhost" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
138
&& apk del .build-deps
139
140
# color avaiable thanks to ncurses packages above
0 commit comments