mirror of
https://github.com/ente-io/ente.git
synced 2025-04-30 03:25:52 +00:00
[docs] Self hosting updates (#5575)
Updates for https://github.com/ente-io/ente/pull/5574
This commit is contained in:
commit
23d1c054aa
@ -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",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user