diff --git a/docs/docs/index.md b/docs/docs/index.md index fa15f6be8b..01ba8d448b 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -19,7 +19,7 @@ have been developed and made available for mobile, web and desktop, namely: ## History -Ente was the founded by Vishnu Mohandas (Ente's CEO) in response to privacy +Ente was founded by Vishnu Mohandas (Ente's CEO) in response to privacy concerns with major tech companies. The underlying motivation was the understanding that big tech had no incentive to fix their act, but with end-to-end encrypted cross platform apps, there was a way for people to take @@ -78,5 +78,5 @@ If you encounter any issues with any of the products that's not answered by our documentation, please reach out to our team by sending an email to [support@ente.io](mailto:support@ente.io) -For community support, please post your queries on +For community support, please post your queries on [Discord](https://discord.gg/z2YVKkycX3) diff --git a/docs/docs/self-hosting/installation/upgradation.md b/docs/docs/self-hosting/installation/upgradation.md index b4b11a70bc..d27dbbf717 100644 --- a/docs/docs/self-hosting/installation/upgradation.md +++ b/docs/docs/self-hosting/installation/upgradation.md @@ -9,6 +9,15 @@ Upgrading Ente depends on the method of installation you have chosen. ## Quickstart +::: tip For Docker users + +You can free up some disk space by deleting older images that were used by obsolette containers. + +``` shell +docker image prune +``` +::: + Upgrade and restart Ente by pulling the latest images in the directory where the Compose file resides. The directory name is generally `my-ente`. @@ -52,18 +61,14 @@ based on the updated source code. ``` shell # Assuming you have cloned repository to ente cd ente - # Pull changes - git pull + + # Pull changes and only keep changes from remote. + # This is needed to keep yarn.lock up-to-date. + # This resets all changes made in the local repository. + # Make sure to stash changes if you have made any. + git fetch origin + git reset --hard main ``` -2. Follow the steps described in [manual setup](/self-hosting/installation/manual) for Museum and web applications. - -::: tip - -If using Docker, you can free up some disk space by deleting older images -that were used by obsolette containers - -``` shell -docker image prune -``` -::: \ No newline at end of file +2. Follow the steps described in [manual setup](/self-hosting/installation/manual#step-3-configure-web-application) + for Museum and web applications.