eliza411/narrafirma

By eliza411

Updated over 9 years ago

Run Narrafirma as a stand-alone Node.js app

Image
1

129

NarraFirma Docker File

A Dockerfile to run NarraFirma as a stand-alone Node.js app. It can also be run as a Wordpress plugin. See the Narrafirma install directions for more details.

To build the image (don't miss the dot at the end)

docker build -t "eliza411/narrafirma" .

To run the container:

-p: The first port in each pair is the host port; change as needed. 8081 is the https port with a self-signed cert.

-e: Specify your Narrafirma superuser credentials.

docker run -p 8080:8080 -p 8081:8081 \
-e NF_SUPERUSER=changethis -e NF_PASSWORD=changethis eliza411/narrafirma

Docker Pull Command

docker pull eliza411/narrafirma