Docker - how to set up Apache + PHP in docker-compose.yml

余生长醉 提交于 2019-12-22 10:24:08

问题


I use this to set up nginx for PHP:

nginx:
    image: nginx:latest
    ports:
        - 8080:80
    volumes:
        - ./code:/code
        - ./site.conf:/etc/nginx/conf.d/site.conf
    links:
        - php
php:
    image: php:7-fpm
    volumes:
        - ./code:/code

But how about Apache? How can I set up Apache + PHP in docker-compose.yml?

Following this guide:

version: '2'

services:
  php:
    build: php
    ports:
      - "80:80"
      - "443:443"
    volumes:
      - ./php/www:/var/www/html

Error:

ERROR: In file './docker-compose.yml' service 'version' doesn't have any configuration options. All top level keys in your docker-compose.yml must map to a dictionary of configuration options.

Any ideas? I'm on Xubuntu 16.04.

EDIT:

After managing to upgrade docker-compose to 1.9, I try with this file below:

version: '2'
services:
    php:
        build: php
        expose:
            - 9000
        volumes:
            - ./php/www:/var/www/html

    apache2:
        image: webdevops/apache:latest
        args:
            - PHP_SOCKET=php:9000
        volumes:
            - ./php/www:/var/www/html
        ports:
            - 80:80
            - 443:443
        links:
            - php

Error:

$ sudo docker-compose up -d
Building php
ERROR: Cannot locate specified Dockerfile: Dockerfile

Docker is such as pain!

Any ideas how to fix this?


回答1:


I would choose webdevops dockerized apache, because it has simple configuration:

version: '2'
services:
    php:
        build: php
        expose:
            - 9000
        volumes:
            - ./php/www:/var/www/html

    apache2:
        image: webdevops/apache:latest
        args:
            - PHP_SOCKET=php:9000
        volumes:
            - ./php/www:/var/www/html
        ports:
            - 80:80
            - 443:443
        links:
            - php



回答2:


  1. We need to create a new folders /php/www in current path

  2. Create a file under php folder save as "Dockerfile" which contains as below without quote

"FROM php:5.6-apache RUN docker-php-ext-install mysqli"

  1. Copy your docker-compose.yml file in your current folder where your "php" folder has.

  2. Create a sample file "index.php" under www folder (/php/www/index.php)

  3. Run in command prompt docker-compose up -d

  4. Open your browser type "localhost" you can see your sample file results.

Note: Above steps as per above mentioned docker-compose.yml file.



来源:https://stackoverflow.com/questions/41423349/docker-how-to-set-up-apache-php-in-docker-compose-yml

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!