Docker: How to use XDebug with docker-compose

MacBook avec code sur un bureau

Docker In the docker-compose.yml file create an images/php image Import: build: images/php Ports: – 80:80 Volumes: – .. /..:/ var/www find your IP address (ifconfig / ipconfig) – in my example (10.1.0.133) Create a Dockerfile in the images/php folder FROM php:7.0.1-apache RUN yes pecl install -o -f xdebug rm -rf /tmp/pear "zend_extension/usr/local/lib/php/extensions/no-debug-non-zts-20151012/xdebug.so" – /usr/local/etc/php/conf.d/xdebug.ini echo … Read more

Docker: How to use nano

MacBook Pro affichant un éditeur de code

To use nano in Docker, you have to update apt-get and install nano. When trying to open a file you may face the error Error opening terminal: unknown. No worries, just export the TERM=xterm variable apt-get update apt-get install nano export TERM-xterm