Putting the LAP in LAMP
Assuming you have Docker installed and have a docker user within a docker group, you're ready to set up a Linux-Apache-MySQL-PHP (LAMP) Server.
As root, launch a container from the ubuntu image (not base):
$ sudo docker run -i -t ubuntu \bin\bash
In the launched container, install PHP and Apache2.
# apt-get install php5
# apt-get install apache2
Assuming everything goes well, exit the container and view the list of containers with "sudo docker ps -a".