Updated wiki.js env loc and slight change to base image postgres

This commit is contained in:
Ash Leece 2020-09-11 22:46:14 +01:00
parent 3093be9f67
commit 296d18e233
4 changed files with 11 additions and 1 deletions

View File

@ -2,7 +2,7 @@ version: "3"
services:
db:
image: postgres:11-alpine
image: postgres:latest
env_file: .env.db
logging:
driver: "none"

View File

@ -0,0 +1,3 @@
POSTGRES_DB=wiki
POSTGRES_PASSWORD=<changeme>
POSTGRES_USER=wikijs

View File

@ -0,0 +1 @@
PORT=<changeme>

View File

@ -0,0 +1,6 @@
DB_TYPE=postgres
DB_HOST=db
DB_PORT=5432
DB_USER=wikijs
DB_PASS=<changeme>
DB_NAME=wiki