🔼 Bumped docusaurus and fixed malformed yaml

This commit is contained in:
2022-09-12 12:51:28 -07:00
parent 0ad5eeda71
commit b927acad04
4 changed files with 3318 additions and 3015 deletions

View File

@@ -39,7 +39,7 @@ jobs:
- name: Release to GitHub Pages
env:
USE_SSH: true
GIT_USER: git
GIT_USER: rishighan
run: |
git config --global user.email "rishi.ghan@gmail.com"
git config --global user.name "rishighan"

View File

@@ -53,23 +53,21 @@ First things first, let's go over what the pre-requisites are:
2. Create a new stack, give it a name.
3. Hover over the gear next to it and click on `Edit Stack`.
4. Copy-paste this into the textarea:
```yaml
version: "3.7"
```yaml
version: "3.7"
x-userdata-volume:
&userdata-volume
x-userdata-volume: &userdata-volume
type: bind
source: ${USERDATA_DIRECTORY}
target: /userdata
x-comics-volume:
&comics-volume
x-comics-volume: &comics-volume
type: bind
source: ${COMICS_DIRECTORY}
target: /comics
services:
threetwo:
services:
threetwo:
build:
context: https://github.com/rishighan/threetwo.git
dockerfile: Dockerfile
@@ -89,7 +87,7 @@ First things first, let's go over what the pre-requisites are:
networks:
- proxy
metadata-service:
metadata-service:
build:
context: https://github.com/rishighan/threetwo-metadata-service.git
image: frishi/threetwo-metadata-service
@@ -107,7 +105,7 @@ First things first, let's go over what the pre-requisites are:
networks:
- proxy
core-services:
core-services:
build:
context: https://github.com/rishighan/threetwo-core-service.git
image: frishi/threetwo-core-service
@@ -130,7 +128,7 @@ First things first, let's go over what the pre-requisites are:
networks:
- proxy
db:
db:
image: "bitnami/mongodb:latest"
container_name: database
networks:
@@ -140,7 +138,7 @@ First things first, let's go over what the pre-requisites are:
volumes:
- "mongodb_data:/bitnami/mongodb"
redis:
redis:
image: "bitnami/redis:latest"
container_name: queue
environment:
@@ -150,7 +148,7 @@ First things first, let's go over what the pre-requisites are:
ports:
- "6379:6379"
elasticsearch:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.16.2
container_name: elasticsearch
environment:
@@ -168,16 +166,17 @@ First things first, let's go over what the pre-requisites are:
networks:
- proxy
networks:
proxy:
networks:
proxy:
external: true
volumes:
mongodb_data:
volumes:
mongodb_data:
driver: local
elasticsearch:
elastic:
driver: local
```
5. Click `Save Changes`
6. Click `Compose Up` and check for errors.
7. If all goes well, you should see the following containers appear as icons without images in the unRAID `Docker Containers` panel:

View File

@@ -15,8 +15,8 @@
"typecheck": "tsc"
},
"dependencies": {
"@docusaurus/core": "^2.0.0-beta.6",
"@docusaurus/preset-classic": "^2.0.0-beta.6",
"@docusaurus/core": "^2.1.0",
"@docusaurus/preset-classic": "^2.1.0",
"@mdx-js/react": "^1.6.21",
"@svgr/webpack": "^5.5.0",
"clsx": "^1.1.1",
@@ -27,7 +27,7 @@
"url-loader": "^4.1.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "2.0.0-beta.6",
"@docusaurus/module-type-aliases": "^2.1.0",
"@tsconfig/docusaurus": "^1.0.4",
"typescript": "^4.3.5"
},

6096
yarn.lock

File diff suppressed because it is too large Load Diff