leycloud/wikijs.yml hinzugefügt
This commit is contained in:
parent
3c16502932
commit
cca10c9f04
|
|
@ -0,0 +1,28 @@
|
|||
services:
|
||||
db:
|
||||
image: postgres:15-alpine
|
||||
environment:
|
||||
POSTGRES_DB: wikijs
|
||||
POSTGRES_PASSWORD: b6sT8wPQU3IhY39N
|
||||
POSTGRES_USER: wikijs
|
||||
volumes:
|
||||
- /home/florian/docker/wikijs/db:/var/lib/postgresql/data
|
||||
restart: unless-stopped
|
||||
|
||||
wiki:
|
||||
image: requarks/wiki:2
|
||||
depends_on:
|
||||
- db
|
||||
environment:
|
||||
DB_TYPE: postgres
|
||||
DB_HOST: db
|
||||
DB_PORT: 5432
|
||||
DB_USER: wikijs
|
||||
DB_PASS: b6sT8wPQU3IhY39N
|
||||
DB_NAME: wikijs
|
||||
ports:
|
||||
- "8087:3000"
|
||||
volumes:
|
||||
- /home/florian/docker/wikijs/data:/wiki/data
|
||||
- /home/florian/docker/wikijs/logs:/wiki/logs
|
||||
restart: unless-stopped
|
||||
Loading…
Reference in New Issue