Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1011 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 1011 Bytes

ProcessWire Docker Image

Go to Docker Hub

A Docker container for Processwire Projects.

Installation

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 .

Usage

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>

Documentation