-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I don't think there is a commenting system but I plan to integrate with this one https://isso-comments.de/docs/reference/installation/ |
Beta Was this translation helpful? Give feedback.
-
I have now tested adding the comentario commenting system into automad demo and it looks awesome docker compose for the services:
db:
image: postgres:17-alpine
environment:
POSTGRES_DB: comentario
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
volumes:
- ./comentariostack/postgres-data:/var/lib/postgresql/data
app:
image: registry.gitlab.com/comentario/comentario:v3.13.1
environment:
BASE_URL: https://comentario.hostlab.tech/
SECRETS_FILE: "/secrets.yaml"
ports:
- "8082:80"
volumes:
- ./comentariostack/comentario/secrets.yaml:/secrets.yaml:ro
depends_on:
- db Integration of comentario into a automad page: Result of the integration: |
Beta Was this translation helpful? Give feedback.
-
Great! |
Beta Was this translation helpful? Give feedback.
I have now tested adding the comentario commenting system into automad demo and it looks awesome
docker compose for the
Inte…