FreshRSS - Self-hosted RSS feed aggregator
Everything you need to deploy Freshrss with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Freshrss up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Freshrss with:
blastdock init freshrss
Interactive mode:
blastdock init freshrss -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Freshrss installation with these configuration options.
Web interface port
Database password
Base URL
Complete Docker Compose configuration for Freshrss deployment.
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