diff --git a/Home.md b/Home.md index 4561e23..9049d97 100644 --- a/Home.md +++ b/Home.md @@ -293,6 +293,20 @@ docker-compose exec db /bin/bash \ ([source](https://community.tt-rss.org/t/docker-compose-tt-rss/2894/233?u=fox)) +### How do I use custom certificates? + +Y need to mount custom certificates into container like this: + +```yml +volumes: + .... + ./ca1.crt:/usr/local/share/ca-certificates/ca1.crt:ro + ./ca2.crt:/usr/local/share/ca-certificates/ca2.crt:ro + .... +``` + +Then, restart the container, which runs `update-ca-certificates` on startup, adding local certificates into system certificate store. + ### How do I make this work on Raspberry Pi? You won't be able to use official Docker Hub images, those are amd64 only. Use dynamic setup (master branch of this repository) instead.