Hoarder: Self-Hosted AI-Powered Bookmark App
Video
Transcript
Hello, and welcome back to Easy Self Host.
In this video, we’re going to set up a bookmark app called Hoarder.
Hoarder helps you save links and images, so you can come back to them later.
It also supports automatic tagging using large language models, making it easier to organize your content.
We’re pairing it with an Ollama server for self-hosted AI.
Plus, it comes with mobile apps and browser extensions to make saving content very convenient.
Now, let’s dive in and run Hoarder with Docker Compose.
Here’s the Docker Compose file I adapted from the official documentation.
First, we define the Docker network proxy-net to connect our Hoarder server to our reverse proxy.
Next, we create two Docker volumes to store data for the Hoarder service and the Meilisearch service.
We’ll mount them to the container in just a moment.
In the services section, we have three services: the Hoarder server, a headless Chrome browser for crawling content, and Meilisearch for full-text search.
For the Hoarder server, we’re using the official container provided by the author.
In the volumes section, we mount the data volume to /data to store the app data.
For networks, the Hoarder server needs both proxy-net and the default network, so it can connect to the proxy server and its dependencies in this Docker Compose setup.
Hoarder offers many configuration options via environment variables.
The DATA_DIR variable tells Hoarder where to store its data.
We set it to /data, which matches our mounted volume.
The MEILI_ADDR points to the Meilisearch server, and the BROWSER_WEB_URL specifies the API address of the headless Chrome.
These two are the dependencies in this Docker Compose we’ll see in a moment.
Next, there’s a MEILI_MASTER_KEY, which is the credential for accessing Meilisearch.
We’ll configure the same credential in the Meilisearch service shortly.
The NEXTAUTH_SECRET is used for Hoarder’s authentication.
NEXTAUTH_URL is the address where users should be redirected upon sign-out—this should match the domain name for the Hoarder service.
Now, let’s set up the Ollama options for AI features.
If you haven’t seen how to run Ollama, check out my previous video.
Here, OLLAMA_BASE_URL is the base address of the Ollama service.
INFERENCE_TEXT_MODEL is the model for text content; I’m using qwen2.5:7b.
INFERENCE_IMAGE_MODEL is for image content—this model must support image-to-text operation.
For example, I’m using llava:7b.
Make sure these models are already downloaded on our Ollama server.
I also increase the INFERENCE_CONTEXT_LENGTH so Hoarder can send more content to the AI model, but keep in mind this may result in more processing time or higher costs for remote APIs.
If you prefer not to run Ollama, you can use any OpenAI-compatible API instead.
For GPT models from OpenAI, you only need to set the OPENAI_API_KEY variable.
For other compatible APIs like Google or Open Routers, you also need to configure the OPENAI_BASE_URL and model parameters.
We are also going to enable the video download feature so Hoarder can download videos from the sites like YouTube.
For Chrome, we’re using the headless Chrome image from Zenika.
Since browsers can be memory-intensive, I set a limit to safeguard other services.
The commands to configure Chrome come straight from Hoarder’s documentation.
Lastly, we have the Meilisearch service using its official image.
In the volumes section, we mount the melisearch volume to /meili_data for its data storage.
In the environment variables, we’re using the same master key specified in the Hoarder service.
We also set MEILI_NO_ANALYTICS to “true” so we’re not sending usage data to Meilisearch’s developers.
That’s all for our Docker Compose setup.
We’ll also update our reverse proxy rule to map a domain name to Hoarder.
I’m using Caddy, so I’ll add a Caddy rule to proxy hoarder.home.easyselfhost.com to the Hoarder service on port 3000.
Next, let’s head over to our server’s command line to run Hoarder.
We’ll navigate to the directory where our Docker Compose file is located.
Then let’s run: docker compose up -d.
After it starts, we should also refresh our proxy configuration.
I’ll just restart my Caddy container.
Now, we can open a browser and go to the domain name we assigned to Hoarder.
For me, it’s hoarder.home.easyselfhost.com.
The first thing we’ll do is to sign up for an account, and then we’ll be inside the Hoarder web app.
Now let’s try pasting a link into the New Item box.
We’ll see Hoarder crawl the site and generate a thumbnail within a few seconds.
The tagging process is a bit slower, since it sends the content to Ollama for language model processing.
After a while, the tags will appear, generated automatically based on the link’s content.
Hoarder also supports adding images as bookmarks.
First, let’s try adding an image of a cat.
We can see the image model recognizes the cat and automatically generates some relevant tags.
Next, let’s add a screenshot with some text.
You’ll notice it understands the text in the image and adds appropriate tags.
From the Hoarder app, we can click a bookmark to open the link directly,
or we can click the expand button to open a preview UI.
In this preview, we can see the bookmark content, tags, and even use Ollama to generate an AI-powered summary of the content.
At the top, we can switch from Cached Content to Screenshot for a captured view of the website.
You’ll notice that Archive and Video are currently grayed out—so let me show you how to enable them.
Archive is useful for preserving pages in case the original site goes down or changes.
We can archive the site by clicking Download Full Page Archive under the bookmark.
After that, you’ll find the saved page in the preview, preserving the original look of the site.
For video links, such as YouTube, Hoarder will try to download the video automatically.
In the preview, you’ll find the downloaded video once it’s finished.
To search for our bookmarks, we can simply use the search bar.
It performs a full-text search on both the content and the tags, which is pretty fast, and it also supports fuzzy matches.
We can also filter bookmarks by going to the Tags section.
Here if we click any tag it will show all the bookmarks with that tag.
Aside from adding links directly in the web UI, we can also use the browser extension or the mobile app for quick bookmarking.
There’s a browser extension available for both Chromium- and Firefox-based browsers.
I’m going to download the Hoarder extension from the Chrome Web Store.
Let’s click the extension and enter the URL for Hoarder.
And then sign in our account.
After that, you can click the extension button to add a link to Hoarder in one step.
Mobile apps are available on the App Store and Google Play.
We also need to configure the server address in the app.
Then sign in to our account.
After this, you can share content from other apps directly to Hoarder.
That’s it for this video!
If you found this helpful, consider subscribing for more self-hosting content.
You’ll find all the configuration files on GitHub—just check the description below.
Thanks for watching, and see you next time!