Change the admin password immediately!
Link an official PostgreSQL server container.
docker run -d --name tt_rss_db postgres
docker run \
-d \
--link tt_rss_db:postgres \
-e SELF_URL_PATH=https://example.org/tt-rss/
-p 8000:80 \
siomiz/tiny-tiny-rss
The entrypoint (/entrypoint.sh) will install schema to (password-less) tt_rss database if the linked postgres server doesn't have it.
Set your reverse-proxy server (if you're using one) for the URL specified in -e SELF_URL_PATH (should end with a slash /; required even if you intend to use localhost:80).
nginx example:
location /tt-rss/ {
index index.php;
rewrite /tt-rss(.*) /$1 break;
proxy_pass http://localhost:8000;
}
Content type
Image
Digest
sha256:edc8cf996…
Size
125.3 MB
Last updated
about 8 years ago
docker pull siomiz/tiny-tiny-rss