본문 바로가기
기타

라즈베리파이에 freshRSS 설치

by 앗사비 2021. 1. 15.
728x90

피들리 구독을 끊고 Reeder 앱에서 로컬로 써보니 왕 불편
그래서 Reeder에서 지원하는 freshRSS를 라즈베리파이에 도커로 설치함

 

사전 작업 : https://myinbox.tistory.com/155

  1. portainer > stacks > add stack
  2. 이름 지정 후 맨 아래 코드 입력
  3. Deploy the stack 클릭
  4. 파이주소:80 으로 접속
---
version: "2.1"
services:
  freshrss:
    image: linuxserver/freshrss
    container_name: freshrss
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=asia/seoul
    volumes:
      - /path/to/data:/config
    ports:
      - 80:80
    restart: unless-stopped

----

 

nginx: [emerg] cannot load certificate "/config/keys/cert.crt": BIO_new_file() failed (SSL: error:02001002:system library:fopen:No such file or directory:fopen('/config/keys/cert.crt','r') error:2006D080:BIO routines:BIO_new_file:no such file)

 

만약 위와 같은 오류가 발생하면

다른 명령어로 도커를 재설치 해본다

 

curl -fsSL https://get.docker.com -o get-docker.sh
bash get-docker.sh
728x90