skip to Main Content

Docker Enable Xdebug – Debian

I have such Dockerfile for my php-container: FROM my-image/debian ARG PHP_VERSION ... ... RUN set -eux # INSTALL SURY SOURCES && buildDeps='apt-transport-https lsb-release wget' && apt-get update && apt-get install -y --no-install-recommends --no-install-suggests $buildDeps && wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg &&…

VIEW QUESTION

Memcached – PhpStorm (macOS) + Docker + Xdebug not work

I have now switched everything to Docker. The containers are loaded and I have reorganized my projects. Sample my docker-compose.yaml: version: '2' services: php: container_name: php2 image: tamuarchi/yii2-mssql:latest volumes: - ~/.composer-docker/cache:/root/.composer/cache:delegated - ./:/app:delegated ports: - '80:80' links: - db networks:…

VIEW QUESTION
Back To Top
Search