some comments about images, missing images
This commit is contained in:
parent
346f7af912
commit
b63fc27e47
5 changed files with 38 additions and 1 deletions
17
pica-standalone/README.md
Normal file
17
pica-standalone/README.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# 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.
|
Loading…
Add table
Add a link
Reference in a new issue