Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 739 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 739 Bytes

Docker Apache PHP

To Build

$ docker build -t eugeneware/docker-apache-php .

To Run

Use docker volumes to expose your web content to the apache web server.

# run docker apache php
$ CONTAINER=$(docker run -d -p 80 -p 3306 -v /your/path/to/serve:/var/www/html eugeneware/docker-apache-php)

# get the http port
$ docker port $CONTAINER 80
0.0.0.0:49206

To access the database

# get the mysql port
$ docker port $CONTAINER 3306
0.0.0.0:49205

# get [dockerhost] IP reading 'inet addr' value
$ ifconfig docker0 | grep 'inet addr'
          inet addr:172.17.42.1  Bcast:0.0.0.0  Mask:255.255.0.0

$ mysql -h172.17.42.1 -uroot -P 49205