mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for Commento service, including environment variables for PostgreSQL configuration. - Added logo for Commento. - Created template.toml for Commento with default variables for configuration.
25 lines
552 B
YAML
25 lines
552 B
YAML
version: "3"
|
|
|
|
services:
|
|
commentoplusplus:
|
|
image: caroga/commentoplusplus:v1.8.7
|
|
ports:
|
|
- "8080"
|
|
environment:
|
|
- COMMENTO_ORIGIN=${COMMENTO_ORIGIN}
|
|
- COMMENTO_POSTGRES=${COMMENTO_POSTGRES}
|
|
- COMMENTO_ENABLE_WILDCARDS=true
|
|
depends_on:
|
|
- postgres
|
|
|
|
postgres:
|
|
image: postgres:11
|
|
environment:
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
- POSTGRES_DB=${POSTGRES_DB}
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres-data: |