Sfoglia il codice sorgente

Expose port 9003 on PHP Docker image for Xdebug, disable Xdebug by default for PHP 7.3, update PHP 8.1 image to use official GA version

Mark Shust 3 anni fa
parent
commit
263e40d5fc

+ 1 - 1
images/php/7.3/Dockerfile

@@ -109,4 +109,4 @@ VOLUME /var/www
 
 WORKDIR /var/www/html
 
-EXPOSE 9001
+EXPOSE 9003

+ 1 - 1
images/php/7.3/conf/php.ini

@@ -4,7 +4,7 @@ zlib.output_compression = On
 cgi.fix_pathinfo = 0
 date.timezone = UTC
 
-xdebug.mode = debug
+xdebug.mode = off
 xdebug.client_host = host.docker.internal
 xdebug.idekey = PHPSTORM
 

+ 1 - 1
images/php/7.4/Dockerfile

@@ -109,4 +109,4 @@ VOLUME /var/www
 
 WORKDIR /var/www/html
 
-EXPOSE 9001
+EXPOSE 9003

+ 2 - 2
images/php/8.1/Dockerfile

@@ -1,4 +1,4 @@
-FROM php:8.1.0RC5-fpm-buster
+FROM php:8.1.0-fpm-buster
 MAINTAINER Mark Shust <mark@shust.com>
 
 ARG APP_ID=1000
@@ -91,4 +91,4 @@ VOLUME /var/www
 
 WORKDIR /var/www/html
 
-EXPOSE 9001
+EXPOSE 9003