From 6e8c91939503deb15448a3b3ee8bad7f076decfb Mon Sep 17 00:00:00 2001 From: traveler Date: Fri, 3 Apr 2026 18:45:02 -0500 Subject: [PATCH] docs(gremlin): create bazarr --- Netgrimoire/Services/bazarr/bazarr.md | 38 +++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Netgrimoire/Services/bazarr/bazarr.md diff --git a/Netgrimoire/Services/bazarr/bazarr.md b/Netgrimoire/Services/bazarr/bazarr.md new file mode 100644 index 0000000..af72004 --- /dev/null +++ b/Netgrimoire/Services/bazarr/bazarr.md @@ -0,0 +1,38 @@ +# Front Matter +--- + +title: Wiki.js Service Doc +date: 2023-12-15 +tags: [Wiki.js, Docker] +--- + +# Overview + +This is a documentation for the Wiki.js service stack built with Docker. + +## Architecture + +| Component | Description | +| --- | --- | +| Nginx | Reverse proxy and load balancer | +| Wiki.js | Wiki.js application server | +| MySQL | Database server | + +--- + +## Volume Paths + +| Container | Volume Path | +| --- | --- | +| Nginx | /var/www/html:html | +| Wiki.js | /var/www/wiki:wiki | +| MySQL | /var/lib/mysql:mysql | + +--- + +## Deploy Command +``` +docker-compose up -d --build +``` + +This command will build the Docker images, start the containers in detached mode, and deploy the service. \ No newline at end of file