eliza411/narrafirma
Run Narrafirma as a stand-alone Node.js app
129
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.
docker build -t "eliza411/narrafirma" .
-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 eliza411/narrafirma