some comments about images, missing images
This commit is contained in:
parent
346f7af912
commit
b63fc27e47
@ -0,0 +1,3 @@
|
||||
# A collection of docker containers associated with Magpie project
|
||||
|
||||
For more details look into folders
|
9
pica-apache/README.md
Normal file
9
pica-apache/README.md
Normal file
@ -0,0 +1,9 @@
|
||||
# Pica with apache composition
|
||||
|
||||
A ready to use pica + webserver composition
|
||||
|
||||
### Running
|
||||
```
|
||||
$ cd <this directory>
|
||||
$ docker compose up
|
||||
```
|
8
pica-environment/README.md
Normal file
8
pica-environment/README.md
Normal file
@ -0,0 +1,8 @@
|
||||
# Pica environment container
|
||||
|
||||
A minimal environment to launch pica service (pica itself is not included)
|
||||
|
||||
### Running
|
||||
```
|
||||
$ docker run --rm thebluestbird/pica-environment:latest
|
||||
```
|
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…
Reference in New Issue
Block a user