启动Docker容器时如何运行php-fpm?

时间:2019-03-13 10:25:44

标签: php docker nginx

启动Docker容器时如何自动运行php-fpm命令?

我有这个Dockerfile:

FROM composer:1.6.5 as build
WORKDIR /var/www
COPY . /var/www
RUN composer install

FROM php:7.2-fpm
USER root
RUN apt-get update && apt-get install -y \
    build-essential \
    mysql-client \
    libpng-dev \
    libjpeg62-turbo-dev \
    libfreetype6-dev \
    locales \
    zip \
    jpegoptim optipng pngquant gifsicle \
    vim \
    unzip \
    git \
    curl
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-install pdo_mysql mbstring zip exif pcntl
RUN docker-php-ext-configure gd --with-gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-png-dir=/usr/include/
RUN docker-php-ext-install gd
RUN apt-get update -y \
    && apt-get install -y nginx
RUN rm -rf /var/www/html
COPY --chown=www-data:www-data --from=build /var/www /var/www
COPY nginx.conf /etc/nginx/sites-enabled/default
EXPOSE 80

RUN service nginx restart
CMD ["nginx", "-g", "daemon off;"]

我知道我应该运行php-fpm,因为当我访问127.0.0.1:8080时,它不会显示我的网页。但是,当我将SSH放进容器并运行php-fpm然后再次访问127.0.0.1:8080时,它将显示该网页。

我应该在下面添加CMD ["php-fpm"]吗?可以在Dockerfile中有两个CMD吗?

1 个答案:

答案 0 :(得分:0)

建议您创建一个start_service.sh脚本或其他内容。在启动容器时同时启动php_fpm和nginx。

如果脚本是一个很好的主意,则可以将其作为守护程序或在后台进行处理。然后永远等待。

#!/bin/bash
"start php_fpm"
"start_iginx"
sleep infinite

在Dockerfile中的CMD中,您只调用脚本而不是nginx。