Skip to content
Open
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
2 changes: 1 addition & 1 deletion pages/memgraph-lab/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Install and run Memgraph Lab in different environments:
- [Docker](/memgraph-lab/getting-started/installation-and-deployment#install-memgraph-lab-with-docker): Quickly set up Memgraph and Memgraph Lab with a single command.
- [Public shared](https://lab.memgraph.com): A pre-deployed version of Memgraph Lab, accessible in the browser for connecting to public Memgraph instances without installation.

For a complete installation guide, visit the [Installation and deployment](/memgraph-lab/getting-started/installation-and-deployment) section.
For a complete installation guide, visit the [Installation and deployment](/memgraph-lab/getting-started/installation-and-deployment) section. If you already have Memgraph Lab installed, learn how to [update to the latest version](/memgraph-lab/getting-started/installation-and-deployment#update-memgraph-lab).

## Connection types

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,36 @@ through Memgraph Lab.

</Steps>

## Update Memgraph Lab

To get the latest features and improvements, update Memgraph Lab to the newest
version. When Lab starts with a newer version, it will automatically run upgrade
migrations on the data stored in the browser or desktop app storage. Note that
downgrade migrations are not supported, so reverting to an older version after
upgrading may result in data incompatibility.

<Tabs items={['Desktop application', 'Docker']}>
<Tabs.Tab>
Visit the [Memgraph Download Hub](https://memgraph.com/download), select your
operating system, and download the latest Memgraph Lab installer. Install it
over the existing version by following the same installation steps as for a
fresh install.
</Tabs.Tab>
<Tabs.Tab>
Pull the latest Memgraph Lab Docker image and start a new container:

```
docker pull memgraph/lab:latest
```

Then start the container:

```
docker run -d -p 3000:3000 --name lab memgraph/lab
```
</Tabs.Tab>
</Tabs>

## Custom installation settings

When deploying Memgraph Lab, you might need to customize certain settings to
Expand Down