Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

freeones scrape error docker #61

Closed
ghost opened this issue Jun 1, 2019 · 4 comments · Fixed by #129
Closed

freeones scrape error docker #61

ghost opened this issue Jun 1, 2019 · 4 comments · Fixed by #129

Comments

@ghost
Copy link

ghost commented Jun 1, 2019

Hello,

I am not able to add new performers by scraping because I get the following errors:

time="2019-06-01T22:36:13+02:00" level=fatal msg="Get https://www.freeones.com/suggestions.php?q=&t=1: x509: certificate signed by unknown authority"

in docker log and

Error: GraphQL error: Get https://www.freeones.com/search/?t=1&q=test&view=thumbs: x509: certificate signed by unknown authority

in the webinterface.

I deployed the container with the provided compose file.
Please inform me if you need additional information.

@pmisterpp
Copy link

pmisterpp commented Jun 5, 2019

Docker image is missing certificate authority certificates.
I have extended the stashapp/stash docker image and installed ca-certificates package to make it work.
Here's an example of my Dockerfile:

FROM stashapp/stash
RUN apt update && apt install ca-certificates -y && update-ca-certificates

@ghost
Copy link
Author

ghost commented Jun 5, 2019

Yeah that works. Thanks.
You should probably fix it and submit a pull-request.

@Leopere
Copy link
Collaborator

Leopere commented Aug 29, 2019 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants
@Leopere @pmisterpp and others