Getting updates

Source code

Make sure you are in the Umami project directory before running these commands.

Pull the latest changes from the Git repository:

git pull

Install any new or updated dependencies:

pnpm install

Rebuild the project:

pnpm build

Finally, restart the application:

pnpm start

If you are using a process manager like PM2, restart the process instead:

pm2 restart umami

Docker

Pull the latest image:

docker pull docker.umami.is/umami-software/umami:latest

Then restart your container to use the new image. If using Docker Compose:

docker compose down
docker compose up -d

On this page