This commit is contained in:
Tobias Reisinger 2022-03-09 12:25:40 +01:00
commit 21798a5962
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
6 changed files with 222 additions and 0 deletions

7
wiki-js/.env Normal file
View file

@ -0,0 +1,7 @@
DB_TYPE=postgres
DB_HOST=db.serguzim.me
DB_PORT=5432
DB_USER=wikijs
DB_PASS=
DB_NAME=wikijsdb
DB_SSL=1

View file

@ -0,0 +1,11 @@
version: '3'
services:
wiki-js:
image: requarks/wiki
restart: always
env_file:
- .env
- .secret.env
ports:
- 3003:3000/tcp