Fix old names and typos

This commit is contained in:
Korbs 2024-11-12 17:31:28 -05:00
parent f68bb92804
commit 92b6f1c558
3 changed files with 31 additions and 10 deletions

View file

@ -18,8 +18,8 @@
### Clone Repository ### Clone Repository
Start by cloning the repository to somewhere on your device using the `git` command: Start by cloning the repository to somewhere on your device using the `git` command:
```bash ```bash
git clone https://ark.sudovanilla.org/korbs/project-pandora-charm/ git clone https://ark.sudovanilla.org/korbs/butterflyvu/
cd ./project-pandora-charm/ cd ./butterflyvu/
``` ```
### Install Packages ### Install Packages
@ -53,11 +53,21 @@ A Docker Compose file is provided that can be used without needing to clone the
``` ```
services: services:
pandora-charm: butterflyvu:
image: ark.sudovanilla.org/korbs/project-pandora-charm:amd64 image: ark.sudovanilla.org/korbs/butterlyvu:amd64
port: 2014:2014 volumes:
- ./config.json:/app/config.json
- ./docs/:/app/src/content/docs/
- ./dists/:/app/dist/
nginx:
image: nginx:latest
restart: always
ports:
- 4242:80
volumes:
- ./dists/:/usr/share/nginx/html/
``` ```
> While simple and small, it is expected this will expand in the future and an all-in-one solution will be provided.
___ ___
<center>A <a href="https://sudovanilla.org/">SudoVanilla</a> Project</center> <center>A <a href="https://sudovanilla.org/">SudoVanilla</a> Project</center>

View file

@ -1,8 +1,19 @@
services: services:
pandora-charm: butterflyvu:
image: ark.sudovanilla.org/korbs/butterlyvu:amd64 image: ark.sudovanilla.org/korbs/butterlyvu:amd64
restart: unless-stopped restart: unless-stopped
ports: ports:
- 2014:2014 - 2014:2014
volumes: volumes:
- .env:/app/.env - ./config.json:/app/config.json
- ./docs/:/app/src/content/docs/
- ./dists/:/app/dist/
nginx:
image: nginx:latest
restart: unless-stopped
network_mode: bridge
ports:
- 4242:80
volumes:
- ./dists/:/usr/share/nginx/html/

View file

@ -28,8 +28,8 @@
"preview": "astro preview", "preview": "astro preview",
"docker:start": "docker compose up -d", "docker:start": "docker compose up -d",
"docker:stop": "docker compose down", "docker:stop": "docker compose down",
"docker:build": "docker build --platform linux/amd64 -t ark.sudovanilla.org/korbs/butterlyvu:amd64 .", "docker:build": "docker build --platform linux/amd64 -t ark.sudovanilla.org/korbs/butterflyvu:amd64 .",
"docker:push": "docker push ark.sudovanilla.org/korbs/butterlyvu:amd64" "docker:push": "docker push ark.sudovanilla.org/korbs/butterflyvu:amd64"
}, },
"dependencies": { "dependencies": {
"@astrojs/mdx": "4.0.0-beta.2", "@astrojs/mdx": "4.0.0-beta.2",