2021-01-28 21:04:37 +00:00
|
|
|
---
|
|
|
|
title: Updating
|
|
|
|
description:
|
|
|
|
published: true
|
2021-05-23 17:01:19 +00:00
|
|
|
date: 2021-05-23T16:59:22.409Z
|
2021-01-28 21:04:37 +00:00
|
|
|
tags:
|
2021-03-14 17:15:53 +00:00
|
|
|
editor: markdown
|
2021-01-28 21:04:37 +00:00
|
|
|
dateCreated: 2021-01-28T20:40:27.192Z
|
|
|
|
---
|
|
|
|
|
2019-01-24 18:07:19 +00:00
|
|
|
## Invidious releases are based on tags. You can use them if you want to be sure your instance is stable.
|
|
|
|
|
|
|
|
#### With release tags
|
|
|
|
```bash
|
|
|
|
$ sudo -i -u invidious
|
|
|
|
$ cd invidious
|
2019-02-09 18:14:03 +00:00
|
|
|
$ currentVersion=$(git rev-list --max-count=1 --abbrev-commit HEAD)
|
2019-01-24 18:07:19 +00:00
|
|
|
$ git pull
|
2019-03-05 00:56:30 +00:00
|
|
|
$ latestVersion=$(git describe --tags --abbrev=0)
|
2019-01-24 18:07:19 +00:00
|
|
|
$ git checkout $latestVersion
|
2019-08-26 21:14:06 +00:00
|
|
|
$ for i in `git rev-list --reverse --abbrev-commit $currentVersion..HEAD` ; do file=./config/migrate-scripts/migrate-db-$i.sh ; [ -f $file ] && $file ; done
|
2019-02-28 16:51:33 +00:00
|
|
|
$ shards update && shards install
|
2019-01-24 18:07:19 +00:00
|
|
|
$ crystal build src/invidious.cr --release
|
|
|
|
$ exit
|
|
|
|
$ sudo systemctl restart invidious.service
|
|
|
|
```
|
|
|
|
|
|
|
|
#### With master branch
|
|
|
|
```bash
|
|
|
|
$ sudo -i -u invidious
|
|
|
|
$ cd invidious
|
2019-02-09 18:14:03 +00:00
|
|
|
$ currentVersion=$(git rev-list --max-count=1 --abbrev-commit HEAD)
|
2019-01-24 18:07:19 +00:00
|
|
|
$ git pull
|
2019-08-26 21:14:06 +00:00
|
|
|
$ for i in `git rev-list --reverse --abbrev-commit $currentVersion..HEAD` ; do file=./config/migrate-scripts/migrate-db-$i.sh ; [ -f $file ] && $file ; done
|
2019-02-28 16:51:33 +00:00
|
|
|
$ shards update && shards install
|
2019-01-24 18:07:19 +00:00
|
|
|
$ crystal build src/invidious.cr --release
|
|
|
|
$ exit
|
|
|
|
$ sudo systemctl restart invidious.service
|
2019-06-15 16:00:36 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
#### With Docker:
|
|
|
|
```bash
|
|
|
|
$ docker-compose pull && docker-compose up --force-recreate --build && docker image prune -f
|
2019-01-24 18:07:19 +00:00
|
|
|
```
|