Skip to content

yappabe/docker-apache-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker pulls

Yappa Apache PHP Docker Image

Usage

Add the following to your docker-compose.yml file:

apache:
    image: yappabe/apache-php
    links:
        - mysql
    volumes_from:
        - app
    environment:
        DOCUMENT_ROOT: /var/www/app/web
        ENVIRONMENT: dev

ENV vars

  • DOCUMENT_ROOT defaults to /var/www/app/web
  • ENVIRONMENT defaults to dev

How to use a different PHP version

Append one of the available version numbers to the image name.

Example:

apache:
    image: yappabe/apache-php:5.4

Available versions

  • 5.6
  • 5.5
  • 5.4
  • 5.3
  • 5.2