Skip to content

Instantly share code, notes, and snippets.

@betweenbrain
Last active May 2, 2017 16:14
Show Gist options
  • Save betweenbrain/bb82d7e3eb3e731a4fc4aac2a2bcb418 to your computer and use it in GitHub Desktop.
Save betweenbrain/bb82d7e3eb3e731a4fc4aac2a2bcb418 to your computer and use it in GitHub Desktop.
PHP 5.6 Apache Docker container

Start container interactively, forwarding port 80 to localhost 8080

$ docker run -p 8080:80 -v /Users/kingbob/Sites:/var/www/html -it --name php5-6 php:5.6.30-apache bash

Start Apache2
$ service apache2 start

Start container interactively

$ docker start -i php5-6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment