This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| freshrss [2021/08/25 15:24] – created alexk7110 | freshrss [2021/11/07 14:04] (current) – [Future plans] alexk7110 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ===== FreshRSS Troubleshooting ===== | + | ====== FreshRSS Troubleshooting |
| ==== History ==== | ==== History ==== | ||
| Line 11: | Line 11: | ||
| ==== Future plans ==== | ==== Future plans ==== | ||
| - | * I will setup a second instance with the YouTube links only to find out if that was the culprit. | + | * I will set up a second instance with the YouTube links only to find out if that was the culprit. |
| - | * The url I had to use on newsboat was http:// | + | * The URL I had to use on newsboat was http:// |
| + | * The URL for FocusReader is https:// | ||
| ---- | ---- | ||
| Line 33: | Line 34: | ||
| === 3_a. See FreshRSS root inside the container === | === 3_a. See FreshRSS root inside the container === | ||
| ls / | ls / | ||
| + | ---- | ||
| + | ==== docker run command ==== | ||
| + | <code bash freshrss> | ||
| + | docker run -d \ | ||
| + | --name=freshrss \ | ||
| + | -e PUID=1000 \ | ||
| + | -e PGID=1000 \ | ||
| + | -e TZ=Europe/ | ||
| + | -p 8080:80 \ | ||
| + | -p 8443:443 \ | ||
| + | -v ${PWD}/ | ||
| + | --restart unless-stopped \ | ||
| + | ghcr.io/ | ||
| + | </ | ||