atix0/selfoss
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.
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
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
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
This image is built for ARMv7 architecture and is compatible with Raspberry Pi 2/3/4 or other ARMv7-based devices.
2025.01.21
docker pull atix0/selfoss