Docker远程解释器未出现在最新的PhpStorm中

时间:2018-09-28 10:23:39

标签: docker phpstorm

PhpStorm 2018.2.3

我尝试将xdebug与PhpStorm一起使用

Dockerfile

FROM php:7.0-apache

RUN pecl install -o -f redis
RUN pecl install -o -f xdebug
RUN docker-php-ext-enable redis
RUN docker-php-ext-enable xdebug
RUN docker-php-ext-install pdo pdo_mysql mysqli
RUN apt-get update
RUN apt-get install locales-all -y

enter image description here

但是永远不会显示Docker作为远程PHP的选项。

我什至通过PhpStorm的TCP连接到Docker

enter image description here enter image description here

1 个答案:

答案 0 :(得分:1)

请确保您的 PHP Docker 插件已启用。

该插件负责在“ PHP解释器”部分中添加Docker支持。