angristan / feedbin-docker

Self-host your own Feedbin RSS reader in Docker
MIT License
251 stars 35 forks source link

have lot of images cannot been delete that at minio #86

Open emengweb opened 2 years ago

emengweb commented 2 years ago

Sidekiq can see Retry list has lots ImageDeleter get Error. The list item has same error: ImageDeleter - "Excon::Error::BadRequest: Expected(200) <=> Actual(400 Bad Request) excon.error.response :body => "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\nBadRequestAn error..." Seem minio or candy couse this error, the images file in minio cannot been remove automatic, don't know why, help plz.

emengweb commented 2 years ago

Solved! Add the "- AWS_S3_BUCKET_IMAGES=$MINIO_BUCKET" to docker-compose.yml file, and up -d it, the images files has been delete!

212-mei commented 2 years ago

Why does my minio not have any pictures? Can your feedbin see the RSS icon?

If possible, would you please share your docker-comemage.yml and.env(you can modify the key parts)?

I couldn't display the icon of the subscription after deployment and couldn't import OPML properly through the website, which had been bothering me for a long time.

Thank you

emengweb commented 2 years ago

RSS Icon still can not see anything

emengweb commented 2 years ago

I use nginx proxy 9000 for docker-minio-service. set nginx proxy_set_header Host $http_host; set port on yml file like this: ` feedbin-minio:

image: minio/minio
container_name: feedbin-minio
environment:
  - MINIO_ACCESS_KEY
  - MINIO_SECRET_KEY
volumes:
  - ./feedbin_minio/data:/data
  - ./feedbin_minio/config:/root/.minio
command: server --console-address ':9001' /data
ports:
    - 127.0.0.1:9000:9000
    - 127.0.0.1:9001:9001
restart: unless-stopped

`

212-mei commented 2 years ago

I use nginx proxy 9000 for docker-minio-service. set nginx proxy_set_header Host $http_host; set port on yml file like this: ` feedbin-minio:

image: minio/minio
container_name: feedbin-minio
environment:
  - MINIO_ACCESS_KEY
  - MINIO_SECRET_KEY
volumes:
  - ./feedbin_minio/data:/data
  - ./feedbin_minio/config:/root/.minio
command: server --console-address ':9001' /data
ports:
    - 127.0.0.1:9000:9000
    - 127.0.0.1:9001:9001
restart: unless-stopped

`

OK,thanks.

RSS icon can't be seen and import opml fails.This seems to be a bug!

brief commented 1 year ago

FAVICON_HOST=$MINIO_HOST (or whatever host you're pointing to) fixed RSS icons / favicons for me. Was defaulting to http://feedbin-minio otherwise, which is inaccessible outside the container.