initial commit
This commit is contained in:
1
emerald-theory/wiki-js/README.md
Normal file
1
emerald-theory/wiki-js/README.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Overview
|
2
emerald-theory/wiki-js/wiki-js.env
Normal file
2
emerald-theory/wiki-js/wiki-js.env
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
DB_USER=
|
||||||
|
DB_PASS=
|
52
emerald-theory/wiki-js/wiki-js.yml
Normal file
52
emerald-theory/wiki-js/wiki-js.yml
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
# Wiki.js
|
||||||
|
# Wikipedia style documentation
|
||||||
|
# Created by wiki.js
|
||||||
|
# ↳ https://link.to.github
|
||||||
|
|
||||||
|
services:
|
||||||
|
wiki-js-server:
|
||||||
|
image: ghcr.io/requarks/wiki:2
|
||||||
|
container_name: wiki-js-server
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- wiki-js-database
|
||||||
|
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
# ports:
|
||||||
|
# - 80:80
|
||||||
|
|
||||||
|
environment:
|
||||||
|
PUID: 1000
|
||||||
|
PGID: 1000
|
||||||
|
DB_TYPE: postgres
|
||||||
|
DB_HOST: wiki-js-database
|
||||||
|
DB_PORT: 5432
|
||||||
|
DB_USER: ${DB_USER}
|
||||||
|
DB_PASS: ${DB_PASS}
|
||||||
|
DB_NAME: wiki
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
|
||||||
|
wiki-js-database:
|
||||||
|
image: postgres:15-alpine
|
||||||
|
container_name: wiki-js-database
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
# ports:
|
||||||
|
# - 3000:3000
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- /home/fxequals/docker/wiki-js/database:/var/lib/postgresql/data
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy:
|
||||||
|
external: true
|
||||||
|
|
||||||
|
# Documentation available at https://docs.requarks.io/
|
Reference in New Issue
Block a user