johnnyhuy / docker-php

This is a PHP docker image built on Alpine Linux

Home Page:http://johnnyhuy.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker PHP / PHP + Apache

This is a PHP docker image built on Alpine Linux (http://www.alpinelinux.org/), a lightweight Linux distro.

Prerequisites

The following requirements are the environments the image has been tested on.

  • Docker version 17.09.0-ce, build afdb6d4
  • (Optional) Docker-compose version 1.16.1, build 6d1ac219

Deployment

Grab the image from the Docker repository.

PHP 7

docker pull johnnyhuy/php:7

PHP 7 + Apache 2.4

docker pull johnnyhuy/php:7-apache

Docker Compose

You can use the following configuration to launch the image from docker-compose.

Replace the square brackets with relevant information.

PHP 7

version: "3.2"
services:
  [IMAGE_NAME]:
    image: johnnyhuy/php:7
    volumes:
      - [WEBSITE PATH]:/var/www/localhost
    ports:
      - 9000:9000

PHP 7 + Apache 2.4

version: "3.2"
services:
  [IMAGE_NAME]:
    image: johnnyhuy/php:7-apache
    volumes:
      - [WEBSITE PATH]:/var/www/localhost
    ports:
      - 80:80

About

This is a PHP docker image built on Alpine Linux

http://johnnyhuy.com

License:MIT License


Languages

Language:Dockerfile 99.6%Language:PHP 0.4%