docker/httpd: Configuration error: No MPM loaded

前端 未结 5 682
太阳男子
太阳男子 2020-12-13 19:46

I have a docker container based in the httpd official image. From nowhere (after a new build), it started failing with the error:

AH00534: httpd: Configurati         


        
5条回答
  •  佛祖请我去吃肉
    2020-12-13 20:16

    I´m using this in my docker file

    FROM php:7.2-apache
    

    And i fixed this problem adding this line to /etc/docker/daemon.json

    {
        "storage-driver": "devicemapper"
    }
    

提交回复
热议问题