A Dockerfile that installs the latest processwire, nginx, php-apc and php-fpm.
The easiest way to get this docker image installed is to pull the latest version from the Docker registry:
$ docker pull suzel/docker-processwire
Build the docker-processwire:
$ git clone https://github.com/suzel/docker-processwire.git
$ cd docker-processwire/
$ docker build -t processwire .Start your image binding external port 80 in all interfaces to your container:
$ docker run --name webproject -v "$PWD":/usr/share/nginx -p 80:80 -d processwireYou can the visit the following URL in a browser on your host machine to get started:
http://127.0.0.1:80