0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

FreshRSS にてフィードを登録できないとき

0
Posted at

はじめに

ミニPC×ローカルLLM×RSSで日々の情報収集を時短してみた
こちらを参考にサーバ上にFreshRSSを構築しようとしたところ、フィードを登録する時に以下のエラーで躓きました。

スクリーンショット 2026-05-21 22.43.48.png

解決方法

Docker環境で動かしている場合、コンテナ内のDNSが外の世界と通信できていない可能性があります。
dockerのyamlにdnsを追加することで解決できるかもしれません。

version: '3'
services:
  feedrss: # あなたのRSSサービス名
    image: ...
    # 以下を追加
    dns:
      - 8.8.8.8
      - 1.1.1.1
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?