magpieContainers/pica-standalone
Blue 259d3b4a99
better installation on pica standalone
2023-12-10 20:33:23 -03:00
..
Dockerfile better installation on pica standalone 2023-12-10 20:33:23 -03:00
README.md some comments about images, missing images 2023-12-03 18:36:10 -03:00

README.md

Pica standalone container

A minimal pica distribution container, has environment to run pica and pica itself (no webserver included)

Running

This container creates a unix socket /run/pica/pica.sock. I expect you to forward there fcgi requests from webserver.

The simplest run is like this

$ docker run --rm thebluestbird/pica-standalone:latest

If you want the socket to be created somewhere outside of the container so you can operate it run it like so:

$ docker run --rm -v .:/run/pica thebluestbird/pica-standalone:latest

This action will bind current directory to container /run/pica, so the container will create a socket in your current directory. If you want a dedicated place for the socket to be created - just replace . after -v with the desired path.