Init
This commit is contained in:
commit
21798a5962
6 changed files with 222 additions and 0 deletions
wiki-js
7
wiki-js/.env
Normal file
7
wiki-js/.env
Normal 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
|
11
wiki-js/docker-compose.yml
Normal file
11
wiki-js/docker-compose.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
wiki-js:
|
||||
image: requarks/wiki
|
||||
restart: always
|
||||
env_file:
|
||||
- .env
|
||||
- .secret.env
|
||||
ports:
|
||||
- 3003:3000/tcp
|
Reference in a new issue