FreshRSS

FreshRSS - Self-hosted RSS feed aggregator

8080
Default Port
2
Services
16.0/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init freshrss

Template Overview

Everything you need to deploy Freshrss with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Freshrss
freshrss/freshrss:latest
Postgres
postgres:13
Categories
Database
Security Features
Password Protection
Resource Requirements
CPU: Medium, Memory: Medium , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Freshrss up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Freshrss with:

Terminal
blastdock init freshrss

Interactive mode:

Terminal
blastdock init freshrss -i

What's Included

Freshrss
Container service
Postgres
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Freshrss installation with these configuration options.

3
Required Fields
0
Optional Fields
1
Auto-Generated Passwords

Port

Web interface port

port
Default: 8080
Required: Yes

Db Password

Database password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Base Url

Base URL

string
Default: http://localhost:8080
Required: Yes

Docker Compose

Complete Docker Compose configuration for Freshrss deployment.

2
Services
3
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  postgres:
    image: postgres:13
    container_name: {{ project_name }}_postgres
    restart: unless-stopped
    environment:
      0: POSTGRES_PASSWORD={{ db_password }}
      1: POSTGRES_USER=freshrss
      2: POSTGRES_DB=freshrss
    volumes:
      - /var/lib/postgresql/data
    networks:
      - freshrss_network

  freshrss:
    image: freshrss/freshrss:latest
    container_name: {{ project_name }}_freshrss
    restart: unless-stopped
    depends_on:
      - postgres
    ports:
      - "80"
    environment:
      0: CRON_MIN=*/15
      1: TZ=Europe/Paris
      2: FRESHRSS_DATABASE_HOST=postgres
      3: FRESHRSS_DATABASE_USER=freshrss
      4: FRESHRSS_DATABASE_PASSWORD={{ db_password }}
      5: FRESHRSS_DATABASE_BASE=freshrss
      6: FRESHRSS_BASE_URL={{ base_url }}
    volumes:
      - /var/www/FreshRSS/data
      - /var/www/FreshRSS/extensions
    networks:
      - freshrss_network

volumes:
  postgres_data:
    driver: local

  freshrss_data:
    driver: local

  freshrss_extensions:
    driver: local

networks:
  freshrss_network:
    driver: bridge