We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
APISprout in Docker Image can't download an OpenAPI file from a SSL Web server that is signed with a private authority.
$ ./apisprout https://localhost:8080/api.yml 2020/02/05 23:08:28 Get https://localhost:8080/api.yml: x509: certificate signed by unknown authority
However update-ca-certificates is present into the image (see Dockerfile).
update-ca-certificates
I suggest you to modify the Dockerfile to run update-ca-certificates at APISprout startup by replacing
ENTRYPOINT ["/usr/local/bin/apisprout"]
with
COPY startup.sh /startup.sh RUN chmod +x /startup.sh ENTRYPOINT [ "/startup.sh" ]
and adding this new startup.sh file:
startup.sh
#!/bin/sh update-ca-certificates /startup.sh
The text was updated successfully, but these errors were encountered:
No branches or pull requests
APISprout in Docker Image can't download an OpenAPI file from a SSL Web server that is signed with a private authority.
However
update-ca-certificates
is present into the image (see Dockerfile).I suggest you to modify the Dockerfile to run
update-ca-certificates
at APISprout startup by replacingwith
and adding this new
startup.sh
file:The text was updated successfully, but these errors were encountered: