48 lines
1.1 KiB
Markdown
Raw Normal View History

2016-04-13 18:03:51 +02:00
## 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.
2016-05-12 00:16:33 +02:00
- Latest Isso installed with `pip`.
2016-04-13 18:03:51 +02:00
2016-05-12 00:16:33 +02:00
#### Build-time variables
- **ISSO_VER** : version of Isso.
2016-05-12 00:21:11 +02:00
2016-04-13 18:03:51 +02:00
#### Environment variables
2016-05-12 00:16:33 +02:00
- **GID** : isso group id *(default : 991)*
- **UID** : isso user id *(default : 991)*
2016-04-13 18:03:51 +02:00
#### Volumes
2016-05-12 00:16:33 +02:00
- **/config** : location of configuration files.
2016-04-13 18:03:51 +02:00
- **/db** : location of SQLite database.
2016-05-12 00:16:33 +02:00
#### Ports
- **8080** [(reverse proxy!)](https://github.com/hardware/mailserver/wiki/Reverse-proxy-configuration).
2016-04-13 18:03:51 +02:00
#### Example of simple configuration
Here is the full documentation : https://posativ.org/isso/docs/
2016-05-12 00:16:33 +02:00
2016-04-13 18:03:51 +02:00
```
# /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
2016-05-12 00:21:11 +02:00
```