Docker Get Started Tutorial using PHP instead of python
docker build --tag get-started-php .
docker run --publish 8080:80 --name get-started-php get-started-php
or, with live editing
docker run --publish 8080:80 --name get-started-php --volume $(pwd):/var/www/app get-started-php
docker stop get-started-php
remove container
docker container rm get-started-php
remove image
docker image remove get-started-php