{"id":19020626,"url":"https://github.com/simeononsecurity/docker-rss-display-web","last_synced_at":"2026-02-17T16:33:30.326Z","repository":{"id":210134958,"uuid":"725828238","full_name":"simeononsecurity/docker-rss-display-web","owner":"simeononsecurity","description":"A docker container that publishes an rss feed to a generated webpage","archived":false,"fork":false,"pushed_at":"2024-07-26T22:55:23.000Z","size":31,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-19T02:36:05.589Z","etag":null,"topics":["docker","docker-compose","docker-container","docker-image","dockerfile","flask","python","python-script","python3","rss","rss-aggregator","rss-feed","rss-generator","rss-reader"],"latest_commit_sha":null,"homepage":"https://simeononsecurity.com","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simeononsecurity.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["simeononsecurity"],"custom":["https://simeononsecurity.com","https://simeononsecurity.com/recommendhome","https://simeononsecurity.com/affiliate","https://twitter.com/simeonsecurity","https://discord.io/cybersentinels"]}},"created_at":"2023-12-01T00:30:43.000Z","updated_at":"2024-07-26T22:55:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"8979c851-53bd-4bd6-a608-927ef3cc4311","html_url":"https://github.com/simeononsecurity/docker-rss-display-web","commit_stats":null,"previous_names":["simeononsecurity/docker-rss-display-web"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/simeononsecurity/docker-rss-display-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simeononsecurity%2Fdocker-rss-display-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simeononsecurity%2Fdocker-rss-display-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simeononsecurity%2Fdocker-rss-display-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simeononsecurity%2Fdocker-rss-display-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simeononsecurity","download_url":"https://codeload.github.com/simeononsecurity/docker-rss-display-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simeononsecurity%2Fdocker-rss-display-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29549795,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T14:33:00.708Z","status":"ssl_error","status_checked_at":"2026-02-17T14:32:58.657Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-compose","docker-container","docker-image","dockerfile","flask","python","python-script","python3","rss","rss-aggregator","rss-feed","rss-generator","rss-reader"],"created_at":"2024-11-08T20:17:49.825Z","updated_at":"2026-02-17T16:33:25.316Z","avatar_url":"https://github.com/simeononsecurity.png","language":"HTML","funding_links":["https://github.com/sponsors/simeononsecurity","https://simeononsecurity.com","https://simeononsecurity.com/recommendhome","https://simeononsecurity.com/affiliate","https://twitter.com/simeonsecurity","https://discord.io/cybersentinels"],"categories":[],"sub_categories":[],"readme":"# RSS Feed Display Docker Container\n\nThis Docker container is designed to fetch and display the latest posts from a specified RSS feed using Python, Flask, and feedparser.\n\n[![Sponsor](https://img.shields.io/badge/Sponsor-Click%20Here-ff69b4)](https://github.com/sponsors/simeononsecurity) [![Docker Image CI](https://github.com/simeononsecurity/docker-rss-display-web/actions/workflows/docker-image.yml/badge.svg)](https://github.com/simeononsecurity/docker-rss-display-web/actions/workflows/docker-image.yml)\n\n## Usage\n\n1. Clone this repository:\n\n    ```bash\n    git clone https://github.com/simeononsecurity/docker-rss-display-web\n    ```\n\n2. Build the Docker image:\n\n    ```bash\n    docker build -t rss-display .\n    ```\n\n    or pull it from [dockerhub](https://hub.docker.com/r/simeononsecurity/rss-display-web)\n\n\n    ```bash\n    docker pull simeononsecurity/rss-display-web\n    ```\n\n\n3. Run the Docker container:\n\n    ```bash\n    docker run -p 8080:80 --name rss-container rss-display\n    ```\n\n4. Visit [http://localhost:8080](http://localhost:8080) in your web browser to view the latest posts from the specified RSS feed.\n\n## Configuration\n\nTo change the RSS feed source, modify the `RSS_FEED_URL` environment variable in the Dockerfile:\n\n```Dockerfile\nENV RSS_FEED_URL=https://simeononsecurity.com/index.xml\n```\nor\n\nPass it in at run time.\n\n```bash\ndocker run -p 8080:80 --name rss-container -e RSS_FEED_URL=https://example.com/rss.xml rss-display\n```\n## Dependencies\n\n- Flask\n- Werkzeug\n- feedparser\n\nThese dependencies are listed in the `requirements.txt` file.\n\n## Customization\n\nFeel free to customize the Flask application (`app.py`) and HTML template (`templates/index.html`) to suit your needs. You can modify the number of displayed posts, the appearance of the webpage, and more.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n\n- [simeononsecurity.com](https://simeononsecurity.com)\n- [simeononsecurity-rss.onrender.com](https://simeononsecurity-rss.onrender.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimeononsecurity%2Fdocker-rss-display-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimeononsecurity%2Fdocker-rss-display-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimeononsecurity%2Fdocker-rss-display-web/lists"}