some comments about images, missing images

This commit is contained in:
Blue 2023-12-03 18:36:10 -03:00
parent 346f7af912
commit b63fc27e47
Signed by: blue
GPG Key ID: 9B203B252A63EE38
5 changed files with 38 additions and 1 deletions

View File

@ -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
View File

@ -0,0 +1,9 @@
# Pica with apache composition
A ready to use pica + webserver composition
### Running
```
$ cd <this directory>
$ docker compose up
```

View File

@ -14,5 +14,5 @@ services:
links:
- pica
volumes:
picarun:
picarun:

View 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
View 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.