dongzi1959 2017-04-25 22:06
浏览 96
已采纳

Docker生产准备好php-fpm和nginx配置

I have a small theoretical problem with combination of php-fpm, nginx and app code in Docker.

I'm trying to stick to the model when docker image does only one thing -> I have separate containers for php-fpm and nginx.

php:
    image: php:5-fpm-alpine
    expose:
        - 9000:9000
    volumes:
        - ./:/var/www/app

nginx:
    image: nginx:alpine
    ports:
        - 3000:80
    links:
        - php
    volumes:
        - ./nginx/app.conf:/etc/nginx/conf.d/app.conf
        - ./:/var/www/app

NOTE: In app.conf is root /var/www/app; Example schema from Symfony

This is great in development, but I don't know how to convert this to production ready state. Mount app directory in production is really bad practice (if I'm not wrong). In best case I copy app source code into container and use this prebuilded code (COPY . /var/www/app in Dockerfile), but in this case is impossible or I don't know how.

I need share app source code between two contatiner (nginx container and php-fpm container) because booth of that need it.

Of course I can make own nginx and php-fpm container and add COPY . /var/www/app into both of them, but I thing that is wrong way because I duplicate code and the whole build process (install dependencies, build source code, etc...) must be in both (nginx/php-fpm) containers.

I try to search but I don't find any idea how to solve this problem. A lot of articles show how to do this with docker-compose file and mount code with --volume but I didn't find any example how to use this on production (without volume).

Only one acceptable solutions for me (in this time) is make one container with nginx and php-fpm together but I'm not sure when is a good way (I try to find best practice).

Do you have any experiences with this or any idea how to solve it?

Thanks for any response!

  • 写回答

2条回答 默认 最新

  • ds3464 2017-05-02 18:13
    关注

    At this time I use smth like:

    Dockerfile:

    FROM php:fpm
    COPY . /var/www/app/
    WORKDIR /var/www/app/
    RUN composer install
    EXPOSE 9000
    VOLUME /var/www/app/web
    

    Dockerfile.nginx

    FROM nginx
    COPY default /etc/nginx/default
    

    docker-compose.yml

    app:
      build:
        context: .
    web:
      build:
        context: .
        dockerfile: Dockerfile.nginx
      volumes_from: app  
    

    But in few days on 17.05 release we can do in one Dockerfile smth like:

    FROM php:cli AS builder
    COPY . /var/www/app/
    WORKDIR /var/www/app/
    RUN composer install && bin/console assets:dump
    
    FROM php:fpm AS app
    COPY --from=builder /var/www/app/src /var/www/app/vendor /var/www/app/
    COPY --from=builder /var/www/app/web/app.php /var/www/app/vendo /var/www/app/web/
    
    FROM nginx AS web
    COPY default /etc/nginx/default
    COPY --from=builder /var/www/app/web /var/www/app/web
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 Matlab打开默认名称带有/的光谱数据
  • ¥50 easyExcel模板 动态单元格合并列
  • ¥15 res.rows如何取值使用
  • ¥15 在odoo17开发环境中,怎么实现库存管理系统,或独立模块设计与AGV小车对接?开发方面应如何设计和开发?请详细解释MES或WMS在与AGV小车对接时需完成的设计和开发
  • ¥15 CSP算法实现EEG特征提取,哪一步错了?
  • ¥15 游戏盾如何溯源服务器真实ip?需要30个字。后面的字是凑数的
  • ¥15 vue3前端取消收藏的不会引用collectId
  • ¥15 delphi7 HMAC_SHA256方式加密
  • ¥15 关于#qt#的问题:我想实现qcustomplot完成坐标轴
  • ¥15 下列c语言代码为何输出了多余的空格