Sign inSign up

centurylink/apache-php

By centurylink

Updated almost 11 years ago

Base docker image to run PHP applications on Apache

Image
7

50K+

centurylink/apache-php repository overview

panamax-docker-php

Base docker image to run PHP applications on Apache

Installing your PHP application

To install your application, copy your code inside the image in /app. For example, if using git:

sudo docker run -d panamax/docker-php git clone https://github.com/fermayo/hello-world-php.git /app

It will print the new container ID (like d35bf1374e88). To create an image from that, execute:

sudo docker commit d35bf1374e88 panamax/hello-world-php

You can now push your changes to the registry:

sudo docker push panamax/hello-world-php

Running your PHP application

Pull your container if it's not yet on your local docker machine:

sudo docker pull panamax/hello-world-php

Run the /run.sh script to start apache (via supervisor):

sudo docker run -d -p 80 panamax/hello-world-php /run.sh

It will print the new container ID (like d35bf1374e88). Get the allocated external port:

sudo docker port d35bf1374e88 80

It will print the allocated port (like 4751). Test your deployment:

curl http://localhost:4751/

Hello world!

Tag summary

Content type

Image

Digest

sha256:e1376df3a

Size

121.5 MB

Last updated

almost 11 years ago

docker pull centurylink/apache-php