Immortalis is a youtube archiver using yt-dlp.
- Web Ui for easy search/download of archived content
- Tracking of collections (playlists/channels) and archival of newly added videos
- Run the following from the Repo root to install via helm
helm repo add immortalis https://domi2120.github.io/immortalis && helm upgrade --install -n immortalis immortalis immortalis/immortalis
. This will by default also create an instance of minio and postgresql. It is strongly recommended to override the credentials with something more secure than the default value.
- Run the following from the Repo root:
docker compose up client archiver tracker
- Alternatively:
-
wget "https://raw.githubusercontent.com/domi2120/immortalis/master/docker-compose.yml" && \ wget "https://raw.githubusercontent.com/domi2120/immortalis/master/.docker-compose.env.example" -O .docker-compose.env && \ wget "https://raw.githubusercontent.com/domi2120/immortalis/master/nginx.conf"
- Adjust
docker-compose.yaml
and.docker-compose.env
as desired - Run
docker compose up client archiver tracker
-
- create a .env file (and optionally a .docker-compose.env file). Take a look at .env.example and .docker-compose.env.example
- install the postgres client library libpq (
sudo apt install libpq
for debian based distros orpacman -Syu extra/postgresql-libs
for arch ) - install diesel_cli
cargo install diesel_cli --no-default-features --features postgres
(Diesel starter guide) - the package.json in the root contains several commands used for common tasks in the repository. They may output warnings due to there being no node_modules, this is intended and not an issue.