Update 'Home'

master
fox 3 years ago
parent 8993200502
commit 7e47a87466

@ -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.

Loading…
Cancel
Save