Skip to content

Commit

Permalink
chore: add common issues section
Browse files Browse the repository at this point in the history
  • Loading branch information
lukepolo committed Jan 15, 2025
1 parent efdf0c4 commit 3ff69af
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,17 @@ export default defineConfig({
],
},
{ text: "Updating", link: "/install/updating" },
{
text: "Debugging",
link: "/debugging",
items: [
{ text: "Invalid SSL", link: "/debugging/invalid-ssl" },
]
},
{ text: "Uninstall", link: "/uninstall" },
],
},
{
text: "Common Issues",
link: "/common-issues",
items: [
{ text: "Invalid SSL", link: "/common-issues/invalid-ssl" },
{ text: "Services Won't Update", link: "/common-issues/services-wont-update" },
]
},
{
text: "Servers",
link: "/servers",
Expand Down
File renamed without changes.
File renamed without changes.
13 changes: 13 additions & 0 deletions common-issues/services-wont-update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Services Won't Update

Sometimes the services won't update. This is caused by an image SHA not refreshing on your system.

To fix this, you can run the following command to refresh the images:

1. Navigate to the installation directory.
2. Run `git pull` to fetch the latest updates.
3. Execute

```bash
./fix-versions.sh
```

0 comments on commit 3ff69af

Please sign in to comment.