소스 검색

markoshust/magento-php:7.2-fpm-3 not found #167

Mark Shust 5 년 전
부모
커밋
c6a4b13550
5개의 변경된 파일9개의 추가작업 그리고 4개의 파일을 삭제
  1. 5 0
      CHANGELOG.md
  2. 1 1
      compose/magento-2/docker-compose.dev.yml
  3. 1 1
      compose/magento-2/docker-compose.yml
  4. 1 1
      images/php/7.1/Dockerfile
  5. 1 1
      images/php/7.2/Dockerfile

+ 5 - 0
CHANGELOG.md

@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
 
 - N/A
 
+## [23.2.3] - 2019-07-20
+
+### Fixed
+- The `php` base Docker image changed from Debian Stretch to Buster and broke a lot of packages, which caused a failed build for `7.1-fpm-12` & `7.2-fpm-3` tags. This update pegs the `php` Docker image to Debian Stretch.
+
 ## [23.2.2] - 2019-07-17
 
 ### Fixed

+ 1 - 1
compose/magento-2/docker-compose.dev.yml

@@ -1,5 +1,5 @@
 # Mark Shust's Docker Configuration for Magento (https://github.com/markshust/docker-magento)
-# Version 23.2.2
+# Version 23.2.3
 
 version: "3"
 

+ 1 - 1
compose/magento-2/docker-compose.yml

@@ -1,5 +1,5 @@
 # Mark Shust's Docker Configuration for Magento (https://github.com/markshust/docker-magento)
-# Version 23.2.2
+# Version 23.2.3
 
 version: "3"
 

+ 1 - 1
images/php/7.1/Dockerfile

@@ -1,4 +1,4 @@
-FROM php:7.1-fpm
+FROM php:7.1-fpm-stretch
 MAINTAINER Mark Shust <mark@shust.com>
 
 RUN apt-get update && apt-get install -y \

+ 1 - 1
images/php/7.2/Dockerfile

@@ -1,4 +1,4 @@
-FROM php:7.2-fpm
+FROM php:7.2-fpm-stretch
 MAINTAINER Mark Shust <mark@shust.com>
 
 RUN apt-get update && apt-get install -y \