https://rss-gent.zeus.gent/feed
This service automatically generates and serves an RSS feed from the Stad Gent news API. It fetches the latest news articles and converts them into a standardized RSS format, making it easy to follow Gent's news updates through any RSS reader.
The RSS feed is available at:
http://localhost:8080/feed
To build the Docker image, run:
docker build -t gent-news-rss .To run the container:
docker run -p 8080:8080 gent-news-rssThis will:
- Start the RSS feed generator
- Make the feed available at http://localhost:8080/feed
- Automatically update the feed every hour
To run the container in the background:
docker run -d -p 8080:8080 gent-news-rssTo view the container logs:
docker logs gent-news-rssTo follow the logs in real-time:
docker logs -f gent-news-rss