https://github.com/luizeof/isso-docker
Docker Image for Isso - A commenting server similar to Disqus
https://github.com/luizeof/isso-docker
docker docker-image isso
Last synced: 2 months ago
JSON representation
Docker Image for Isso - A commenting server similar to Disqus
- Host: GitHub
- URL: https://github.com/luizeof/isso-docker
- Owner: luizeof
- Created: 2019-01-16T19:04:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-16T19:35:11.000Z (over 7 years ago)
- Last Synced: 2025-12-28T19:46:54.641Z (6 months ago)
- Topics: docker, docker-image, isso
- Language: Dockerfile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# isso-docker
Docker Image for [isso](https://posativ.org/isso/) - A commenting server similar to Disqus
## Default usage:
```
docker run --name bind -d -p 8080:8080 \
-v /isso/isso.conf:/opt/isso/isso.conf \
-v /isso/data:/opt/issodb \
--restart=always luizeof/isso-docker:latest
```
## Docker-compose:
```
version: '2'
services:
isso:
image: luizeof/isso-docker:latest
ports:
- "8080:8080"
volumes:
- /isso/isso.conf:/opt/isso/isso.conf
- /isso/data:/opt/issodb
restart: always
```
```
docker-compose up -d
```
## Configuring isso Instance
There are some minimal configuration for *isso* work at [https://posativ.org/isso/docs/configuration/server/](https://posativ.org/isso/docs/configuration/server/)
```
# file: isso.conf
[general]
dbpath = /opt/issodb/comments.db
host = https://example.tld/
[server]
listen = http://0.0.0.0:8080
```