From 131182f4b0f57c158880e2a6a7f1fb5e56156e5f Mon Sep 17 00:00:00 2001 From: fxequals Date: Sat, 19 Jul 2025 23:33:08 -0400 Subject: [PATCH] initial commit --- emerald-theory/wiki-js/README.md | 1 + emerald-theory/wiki-js/wiki-js.env | 2 ++ emerald-theory/wiki-js/wiki-js.yml | 52 ++++++++++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 emerald-theory/wiki-js/README.md create mode 100644 emerald-theory/wiki-js/wiki-js.env create mode 100644 emerald-theory/wiki-js/wiki-js.yml diff --git a/emerald-theory/wiki-js/README.md b/emerald-theory/wiki-js/README.md new file mode 100644 index 0000000..4bba659 --- /dev/null +++ b/emerald-theory/wiki-js/README.md @@ -0,0 +1 @@ +# Overview \ No newline at end of file diff --git a/emerald-theory/wiki-js/wiki-js.env b/emerald-theory/wiki-js/wiki-js.env new file mode 100644 index 0000000..26ef50d --- /dev/null +++ b/emerald-theory/wiki-js/wiki-js.env @@ -0,0 +1,2 @@ +DB_USER= +DB_PASS= \ No newline at end of file diff --git a/emerald-theory/wiki-js/wiki-js.yml b/emerald-theory/wiki-js/wiki-js.yml new file mode 100644 index 0000000..5939816 --- /dev/null +++ b/emerald-theory/wiki-js/wiki-js.yml @@ -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/ \ No newline at end of file