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