Compare commits

..

No commits in common. "984a51cfd7def71655236054475eb07970a219a9" and "8a8a14b37331eea7f336fe69994d821b1f86574f" have entirely different histories.

4 changed files with 0 additions and 35 deletions

2
.gitignore vendored
View File

@ -1,2 +0,0 @@
.env
data/

3
.gitmodules vendored
View File

@ -1,3 +0,0 @@
[submodule "commentoplusplus"]
path = commentoplusplus
url = https://github.com/souramoo/commentoplusplus.git

@ -1 +0,0 @@
Subproject commit 48e0f55828baad5e10a0fbd97fb6fe83ff62e93f

View File

@ -1,29 +0,0 @@
version: "3"
services:
postgres:
image: postgres:13
environment:
- POSTGRES_USER=commento
- POSTGRES_PASSWORD
- POSTGRES_DB=commentodb
volumes:
- ./data/postgres:/var/lib/postgresql/data/
restart: always
healthcheck:
test: pg_isready -U commento -d commentodb
interval: 10s
timeout: 5s
retries: 5
commento:
build: commentoplusplus/
ports:
- 127.0.0.1:83:8080
environment:
- COMMENTO_ORIGIN=https://commento.bbaovanc.com
- COMMENTO_PORT=8080
- COMMENTO_POSTGRES=postgres://commento:$POSTGRES_PASSWORD@postgres:5432/commentodb?sslmode=disable
- COMMENTO_ENABLE_LOGGING=true
- COMMENTO_FORBID_NEW_OWNERS=true
depends_on:
- postgres