Post

Leantime in Home Lab

Fusion is an RSS feed aggregator which has an inbuilt reader interface for articles too. It’s very easy to setup and is what I use for my reading day to day. It has a quick mark as read feature too, which allows me to manage my articles effectively.

To deploy this, use Docker in the command line like so →

1
2
3
4
docker run --rm -it -d -p 8080:8080 \
-v $(pwd)/fusion:/data \
-e PASSWORD="a strong password" \
rook1e404/fusion:latest

This will expose the app at localhost:8080 and store related information in the fusion directory.

A better way to deploy it, specially using Portainer or Dockge is by using a compose template. First create a directory for it using →

1
mkdir $HOME/fusion

Then, launch the following template →

1
2
3
4
5
6
7
8
9
services:
  fusion:
    image: rook1e404/fusion:latest
    ports:
      - 8080:8080
    environment:
      - PASSWORD=thisisasecurepassword
    volumes:
      - /home/username/fusion:/data

And that’s it! Enjoy reading articles like a pro!

This post is licensed under CC BY 4.0 by the author.