diff --git a/docs/admin/configuration/frontend-update-check.md b/docs/admin/configuration/frontend-update-check.md new file mode 100644 index 00000000..f35e5e4b --- /dev/null +++ b/docs/admin/configuration/frontend-update-check.md @@ -0,0 +1,42 @@ +--- +sidebar_position: 15 +id: frontend-check-updates +title: Frontend Update check +description: How to disable the frontend check for updates in OpenCloud. +draft: false +--- + +# Disable frontend update check + +By default, OpenCloud performs a frontend check to verify if you are running the latest version. + +check is true + +## Edit the `.env` File + +Open the environment configuration file located in your `opencloud-compose` directory: + +```bash +nano opencloud-compose/.env +``` + +Set the `FRONTEND_CHECK_FOR_UPDATES` environment variable to `false` to disable the frontend check for updates: + +```env +FRONTEND_CHECK_FOR_UPDATES=false +``` + +## Restart Docker Services + +After saving the file, shut down and restart the Docker containers to apply the changes: + +```bash +docker compose down +docker compose up -d +``` + +## Result + +The frontend will no longer display a message about newer versions being available. + +check is false diff --git a/docs/admin/configuration/img/frontend-update-check/check-false.png b/docs/admin/configuration/img/frontend-update-check/check-false.png new file mode 100644 index 00000000..daa2f160 Binary files /dev/null and b/docs/admin/configuration/img/frontend-update-check/check-false.png differ diff --git a/docs/admin/configuration/img/frontend-update-check/check-true.png b/docs/admin/configuration/img/frontend-update-check/check-true.png new file mode 100644 index 00000000..4be5cf58 Binary files /dev/null and b/docs/admin/configuration/img/frontend-update-check/check-true.png differ