Sign inSign up

nefald/isso

By nefald

Updated over 1 year ago

A commenting server similar to Disqus

Image
1

1.4K

nefald/isso repository overview

Nefald/isso

Inspired by Wonderfall/docker-Isso

What is this?

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

Features
  • Based on Alpine Linux 3.13.
  • Latest Isso installed with pip.
Build-time variables
  • ISSO_VERSION : version of Isso.
Environment variables
  • GID : isso group id (default : 1000)
  • UID : isso user id (default : 1000)
Volumes
  • /config : location of configuration files.
  • /db : location of SQLite database.
Ports
  • 8080
Example of simple configuration

Here is the full documentation : https://posativ.org/isso/docs/

#  /docker/isso/config/isso.conf
[general]
dbpath = /db/comments.db
host = https://comments.domain.tld/
[server]
listen = http://0.0.0.0:8080/

# docker-compose.yml
  isso:
    image: nefald/isso:latest
    container_name: isso
    restart: unless-stopped
    environment:
      - GID=1000
      - UID=1000
    volumes:
      - /docker/isso/config:/config
      - /docker/isso/db:/db

Tag summary

Content type

Image

Digest

sha256:a6331e9b8

Size

32.1 MB

Last updated

over 1 year ago

docker pull nefald/isso