atix0/selfoss

By atix0

Updated about 1 month ago

RSS Reader

Image
Databases & Storage

9

Selfoss Self Hosted RSS Reader Server image for ARMv7

This is a Docker image for Selfoss, an open-source RSS feed reader and aggregator. This image is based on rsprta/selfoss, with custom modifications and updates.

Key Features

  • Selfoss web interface for reading and managing RSS feeds.
  • Supports SQLite or MySQL databases.
  • Supports Docker environment variables for configuration.

Usage

Quick Start

The following command will start a Gitea container with default settings:

docker run -d -p 8080:80 \
  -e DB_TYPE=mysql \
  -e DB_HOST=your-mysql-host \
  -e DB_NAME=selfoss \
  -e DB_USER=your-username \
  -e DB_PASS=your-password \
  -v /path/to/data:/var/www/html/data \
  atix0/selfoss
Updating the Image

To update the image to the latest version:

Pull the latest image:

docker pull atix0/selfoss

Restart the container with the new image:

docker-compose restart

Example Docker Compose Configuration

services:
  selfoss:
    container_name: selfoss
    image: atix0/selfoss:latest
    environment:
      - TZ=${TIME_ZONE}
    ports:
      - 8888:8888
    restart: unless-stopped
    volumes:
      - /path/to/data:/selfoss/data

Supported Platform

This image is built for ARMv7 architecture and is compatible with Raspberry Pi 2/3/4 or other ARMv7-based devices.

Version History

2025.01.21

  • First Version

Docker Pull Command

docker pull atix0/selfoss