Running with Docker
The docker-based example application can be found from here. It provides base Dockerfile that sets up Blog-Core and its dependencies on the awesome swipl base docker. It can be run with the following commands:
docker pull blogcore/demo
docker run -t -p 7000:80 blogcore/demo
This makes the demo available on http://localhost:7000. The -t
allocates a pseudo-tty. That is
needed to keep the demo running as closing the stdin would make SWI-Prolog exit.