A Dockerfile that installs and runs Apache, PHP 5.6 and SSH on Debian 8.5.
docker build -t apache-php56 .
docker run -d --name foobar -e HOSTNAME=foobar.lo -p 7331:7331 -p 8080:80 -v /FOO/BAR:/var/www rsnts/apache-php56
A Dockerfile that installs and runs Apache, PHP 5.6 and SSH on Debian 8.5.
Shell