A Docker container for Processwire Projects.
The easiest way to get this docker image installed is to pull the latest version from the Docker registry:
$ docker pull suzel/docker-processwire
or build from scratch:
$ git clone https://github.com/suzel/docker-processwire.git
$ cd docker-processwire
$ docker build -t suzel/docker-processwire .
Start your image binding external port 80 in all interfaces to your container:
$ docker run --name pw-project \
-p 80:80 \
-d suzel/docker-processwire
You can the visit the following URL in a browser on your host machine to get started:
$ open http://<docker_ip_address>