Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Robin Thoni 4cd8ada9ab README il y a 7 ans
.gitignore init il y a 8 ans
Dockerfile init il y a 8 ans
README.md README il y a 7 ans
apache2.conf init il y a 8 ans
docker-php-ext-configure init il y a 8 ans
docker-php-ext-enable init il y a 8 ans
docker-php-ext-install init il y a 8 ans
php-apache.ini init il y a 8 ans
php-cli.ini init il y a 8 ans
run.sh init il y a 8 ans

README.md

Docker for php 7.0 with apache 2.4

Why?

This docker file allows you to deploy a php 7.0 application in a couple of seconds on any server configuration. See docker help for more information.

Usage

Build the image:

git clone https://git.rthoni.com/robin.thoni/docker-php7.0-apache
cd docker-php7.0-apache
docker build -t php7.0-apache .

Run a container:

docker run -d -v /path/to/my/php/application/:/var/www/html -p 8000:80 --name=container-my-php-application-apache php7.0-apache

NB: /path/to/my/application/public/ folder must exists

Browse:

Open https://127.0.0.1:8000/ in a web browser.