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 pullInstall any new or updated dependencies:
pnpm installRebuild the project:
pnpm buildFinally, restart the application:
pnpm startIf you are using a process manager like PM2, restart the process instead:
pm2 restart umamiDocker
Pull the latest image:
docker pull docker.umami.is/umami-software/umami:latestThen restart your container to use the new image. If using Docker Compose:
docker compose down
docker compose up -d