How to Install CommaFeed on Your UGREEN NAS

How to Install CommaFeed on Your UGREEN NAS

CommaFeed is a free and open source feed reader which can be self hosted on a web server, like FreshRSS. It draws inspiration from Google Reader based on Quarkus and React/TypeScript . In this step by step guide I will show you how to install CommaFeed on your UGREEN NAS using Docker & Portainer.

šŸ’”Note: This guide works perfectly with the latest CommaFeed v5.0.2 release.

  • STEP 1

Please Support My work by Making a Donation.

  • STEP 2

InstallĀ Portainer using my step by step guide. If you already have Portainer installed on your UGREEN NAS, skip this STEP. Attention: Make sure you have installed the latest Portainer version.

  • STEP 3

Add Read & Write Permissions to the Docker Folder. If you have already added the Read and Write Permissions to the Docker Folder, skip this STEP.

  • STEP 4

Go toĀ File ManagerĀ and open the docker folder. Inside the docker folder, create one new folder and name itĀ commafeed. Follow the instructions in the image below.
Note: Be careful to enter only lowercase, not uppercase letters.

CommaFeed UGREEN NAS Portainer Set up 1

  • STEP 5

Now create two new folder inside the commafeed folder that you previously created at STEP 4 and name them data and db. Follow the instructions in the image below.
Note: Be careful to enter only lowercase, not uppercase letters.

CommaFeed UGREEN NAS Portainer Set up 2

  • STEP 6

Log into Portainer using your username and password. On the left sidebar in Portainer, click on StacksĀ thenĀ + Add stack. Follow the instructions in the image below.

UGREEN NAS Portainer Add Stack

  • STEP 7

In the Name field type in commafeed. Follow the instructions in the image below.

Note: Copy Paste the code below in the Portainer Stacks Web editor.

version: "3.9"
services:
  postgresql:
    image: postgres:16
    container_name: CommaFeed-DB
    restart: on-failure:5
    mem_limit: 4g
    cpu_shares: 768
    healthcheck:
      test: ["CMD", "pg_isready", "-q", "-d", "commafeed", "-U", "commafeed"]
      timeout: 45s
      interval: 10s
      retries: 10
    environment:
      POSTGRES_USER: commafeed
      POSTGRES_PASSWORD: commafeed
      POSTGRES_DB: commafeed
    volumes:
      - /volume1/docker/commafeed/db:/var/lib/postgresql/data:rw
      
  commafeed:
    image: athou/commafeed:latest-postgresql
    container_name: CommaFeed
    healthcheck:
      test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/8082' || exit 1
      interval: 10s
      timeout: 5s
      retries: 3
      start_period: 90s
    restart: on-failure:5
    environment:
      - QUARKUS_DATASOURCE_JDBC_URL=jdbc:postgresql://postgresql:5432/commafeed
      - QUARKUS_DATASOURCE_USERNAME=commafeed
      - QUARKUS_DATASOURCE_PASSWORD=commafeed
    volumes:
      - /volume1/docker/commafeed/data:/commafeed/data:rw
    ports:
      - 8073:8082

CommaFeed UGREEN NAS Portainer Set up 3

  • STEP 8

Scroll down on the page until you see a button namedĀ Deploy the stack. Click on it. Follow the instructions in the image below. The installation process can take up to a few minutes. It will depend on your Internet speed connection.

CommaFeed UGREEN NAS Portainer Set up 4

  • STEP 9

If everything goes right, you will see the following message at the top right of your screen: ā€œSuccess Stack successfully deployedā€œ.

CommaFeed UGREEN NAS Portainer Set up 5

  • STEP 10

Go back toĀ STEP 1Ā or you will deal with karma šŸ™‚.

  • STEP 11

The installation process can take up to a few seconds/minutes. It will depend on your Internet speed connection. Now open your browser and type in http://ugreennas-ip-address:8073 Type in the default username and password, then click Log in. Follow the instructions in the image below.

āš ļøWarning: the default username is adminĀ and the default password is admin

CommaFeed UGREEN NAS Portainer Set up 6

  • STEP 12

At the top right of the page, click admin then Manager users to change the default admin username and password. You can also switch your theme to Dark.Ā Follow the instructions in the image below.

CommaFeed UGREEN NAS Portainer Set up 7

  • STEP 13

Add your first feed. At the top left of the page, click the + icon then type in your favorite website RSS feed link address and click Next. Follow the instructions in the image below.

CommaFeed UGREEN NAS Portainer Set up 8

  • STEP 14

Click Subscribe. Follow the instructions in the image below.

CommaFeed UGREEN NAS Portainer Set up 9

  • STEP 15

Your CommaFeed instance at a glance!

CommaFeed UGREEN NAS Portainer Set up 10

Enjoy CommaFeed on your UGREEN NAS!

This post was updated on Wednesday / August 28th, 2024 at 4:37 AM