docker / fig php环境

时间:2015-03-11 08:52:03

标签: php docker fig

我可以使用php容器从其他容器执行脚本。 如果我能怎样才能做到或做错了

Dockerfile:

  

FROM ubuntu:14.04

     

运行apt-get update&& apt-get install -y apache2

     

ADD docker / apache2 / apache-config.conf /etc/apache2/sites-enabled/000-default.conf

     

ADD docker / hosts / etc / hosts

     

CMD / usr / sbin / apache2ctl -D FOREGROUND

图:

app:
    build: .
    volumes:
      - .:/var/www/
    ports:
      - "80:80"
    links:
       - php
php:
    image: php:5.6
    volumes:
      - .:/var/www/

1 个答案:

答案 0 :(得分:0)

我不确定你要做什么,但如果你想与Apache一起运行PHP,图像php:5.6-apache可能更合适(参见:https://registry.hub.docker.com/u/library/php/

在这种情况下,您只有1个容器(没有链接)。