From c533265a60f26494de1217f40f4e42d59586ba7c Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Wed, 13 Apr 2016 18:03:51 +0200 Subject: [PATCH] isso: add README.md --- isso/README.md | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 isso/README.md diff --git a/isso/README.md b/isso/README.md new file mode 100644 index 0000000..addd8ff --- /dev/null +++ b/isso/README.md @@ -0,0 +1,43 @@ +## wonderfall/isso + +![](https://i.goopics.net/q1.png) + + +#### What is this? +Isso is a commenting server similar to Disqus. More info on the [official website](https://posativ.org/isso/). + +#### Features +- Based on Alpine Linux 3.3. +- Latest Isso installed via pip. + +#### Environment variables +- **GID** : isso group id. +- **UID** : isso user id. + +#### Volumes +- **/config** : configuration files. +- **/db** : location of SQLite database. + +#### Example of simple configuration +Here is the full documentation : https://posativ.org/isso/docs/ +``` +# /mnt/docker/isso/config/isso.conf +[general] +dbpath = /db/comments.db +host = https://cats.schrodinger.io/ +[server] +listen = http://0.0.0.0:8080/ + +# docker-compose.yml +isso: + image: wonderfall/isso + environment: + - GID=1000 + - UID=1000 + volumes: + - /mnt/docker/isso/config:/config + - /mnt/docker/isso/db:/db +``` + +#### Reverse proxy +https://github.com/Wonderfall/dockerfiles/tree/master/reverse