Isso Docker#
a Disqus alternative
Demo#
Docker#
vi config/isso.cfg
[general]
dbpath = comments.db
host =
http://localhost/
public-endpoint = http://localhost:8080
[server]
listen = http://0.0.0.0:8080
[admin]
enabled = true
password = 123456
docker run -d --rm --name isso -p 8080:8080 \
-v $PWD/config:/config -v $PWD/db:/db \
ghcr.io/isso-comments/isso
nginx#
vi html/isso.html
<html>
<body>
<h1>Isso</h1>
<script
data-isso="//localhost:8080/"
src="//localhost:8080/js/embed.min.js"
></script>
<section id="isso-thread"></section>
</body>
</html>
vi conf.d/default.conf
location = /isso.html {
root /etc/nginx/html;
}