Sign inSign up

caroga/commentoplusplus

By caroga

Updated almost 4 years ago

Docker image for the patched version of Commento

Image
5

50K+

caroga/commentoplusplus repository overview

About

This repo provides a ready to use docker image with the patched version of Commento using the Commento++ repository over at github. You can see that the Gitlab runner produces the image using the repository's own build file. I did not configure any webhooks so if you are missing a version you can ping me about this by creating a new issue on here.

All credits for Commento go to the respective software's author and fork maintainers. I do not take any responsibility for anything.

All images build here are mirrored from https://gitlab.com/caroga/commentoplusplus-docker

Examples

docker-compose.yml

version: '3.7'

services:
  commento:
    image: caroga/commentoplusplus:v1.8.6
    environment:
      COMMENTO_ORIGIN: 'https://your.domain.com'
      COMMENTO_PORT: '8080'
      COMMENTO_POSTGRES: 'postgres://username:password@db:5432/commento?sslmode=disable'
      #COMMENTO_FORBID_NEW_OWNERS: 'true' # enable this after your own registration
      COMMENTO_GZIP_STATIC: 'true'
    depends_on:
      - db
    ports:
      - "8080/8080"

  db:
    image: postgres:12.5-alpine
    environment:
      POSTGRES_DB: 'commento'
      POSTGRES_USER: 'username'
      POSTGRES_PASSWORD: 'password'

Tag summary

Content type

Image

Digest

sha256:f3233882b

Size

8.5 MB

Last updated

almost 4 years ago

docker pull caroga/commentoplusplus