Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions docs/admin/configuration/frontend-update-check.md
Original file line number Diff line number Diff line change
@@ -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.

<img src={require("./img/frontend-update-check/check-true.png").default} alt="check is true" width="520"/>

## 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.

<img src={require("./img/frontend-update-check/check-false.png").default} alt="check is false" width="520"/>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.