[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",
items: [
{
text: "General",
link: "/self-hosting/troubleshooting/misc",
},
{
text: "Uploads",
link: "/self-hosting/troubleshooting/uploads",
},
{
text: "Docker",
text: "Docker / quickstart",
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
`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
old credentials, and you're trying to connect to it using the new ones, and
the error arises.
Docker will reuse the existing volumes (`my-ente_postgres-data`,
`my-ente_minio-data`). So your postgres is running off the old credentials,
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
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
```
to list them, and then delete the ones that begin with `my-ente` using `docker
volume rm`. You can delete all stale volumes by using `docker system prune` with
the `--volumes` flag, but be _really_ careful, that'll delete all volumes (Ente
or otherwise) on your machine that are not currently in use by a running docker
container.
to list them, and then delete the ones that begin with `my-ente` using
`docker volume rm`. You can delete all stale volumes by using
`docker system prune` with the `--volumes` flag, but be _really_ careful,
that'll delete all volumes (Ente or otherwise) on your machine that are not
currently in use by a running docker container.
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