[docs] Self hosting updates (#5575)

Updates for https://github.com/ente-io/ente/pull/5574
This commit is contained in:
Manav Rathi 2025-04-10 08:26:00 +05:30 committed by GitHub
commit 23d1c054aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 9 deletions

View File

@ -309,12 +309,16 @@ export const sidebar = [
{ {
text: "Troubleshooting", text: "Troubleshooting",
items: [ items: [
{
text: "General",
link: "/self-hosting/troubleshooting/misc",
},
{ {
text: "Uploads", text: "Uploads",
link: "/self-hosting/troubleshooting/uploads", link: "/self-hosting/troubleshooting/uploads",
}, },
{ {
text: "Docker", text: "Docker / quickstart",
link: "/self-hosting/troubleshooting/docker", link: "/self-hosting/troubleshooting/docker",
}, },
{ {

View File

@ -103,9 +103,9 @@ like this:
3. However, you would already have a docker volume from the first run of 3. However, you would already have a docker volume from the first run of
`quickstart.sh`. Since the folder name is the same in both cases `my-ente`, `quickstart.sh`. Since the folder name is the same in both cases `my-ente`,
Docker will reuse the existing volumes. So your postgres is running off the Docker will reuse the existing volumes (`my-ente_postgres-data`,
old credentials, and you're trying to connect to it using the new ones, and `my-ente_minio-data`). So your postgres is running off the old credentials,
the error arises. and you're trying to connect to it using the new ones, and the error arises.
The solution is to delete the stale docker volume. **Be careful**, this will The solution is to delete the stale docker volume. **Be careful**, this will
delete all data in those volumes (any thing you uploaded etc), so first delete all data in those volumes (any thing you uploaded etc), so first
@ -118,11 +118,11 @@ If you're sure of what you're doing, the volumes can be deleted by
docker volume ls docker volume ls
``` ```
to list them, and then delete the ones that begin with `my-ente` using `docker to list them, and then delete the ones that begin with `my-ente` using
volume rm`. You can delete all stale volumes by using `docker system prune` with `docker volume rm`. You can delete all stale volumes by using
the `--volumes` flag, but be _really_ careful, that'll delete all volumes (Ente `docker system prune` with the `--volumes` flag, but be _really_ careful,
or otherwise) on your machine that are not currently in use by a running docker that'll delete all volumes (Ente or otherwise) on your machine that are not
container. currently in use by a running docker container.
If you're unsure about removing volumes, another alternative is to rename your If you're unsure about removing volumes, another alternative is to rename your
`my-ente` folder. Docker uses the folder name to determine the volume name `my-ente` folder. Docker uses the folder name to determine the volume name