2016-05-09 18:46:01 +02:00
..
2016-05-09 18:46:01 +02:00
2016-04-13 18:03:51 +02:00
2016-05-07 01:04:42 +02:00

wonderfall/isso

What is this?

Isso is a commenting server similar to Disqus. More info on the official website.

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