1
0
Fork 0
mirror of https://git.tt-rss.org/fox/ttrss-docker-compose synced 2025-07-08 21:09:59 +02:00

Update 'Home'

fox 2021-08-23 10:17:36 +03:00
parent 8993200502
commit 7e47a87466

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