1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.7 KiB
Markdown

10 years ago
# docker-ttrss
10 years ago
This [Docker](https://www.docker.com) image allows you to run the [Tiny Tiny RSS](http://tt-rss.org) feed reader.
10 years ago
Keep your feed history to yourself and access your RSS and atom feeds from everywhere.
You can access it through an easy to use webinterface on your desktop, your mobile browser
10 years ago
or using one of the available apps.
5 years ago
The image is origially based on [clue/docker-ttrss](https://github.com/clue/docker-ttrss) and stripped to most simple operation.
10 years ago
## About Tiny Tiny RSS
> *From [the official readme](http://tt-rss.org/redmine/projects/tt-rss/wiki):*
Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator,
designed to allow you to read news from any location,
while feeling as close to a real desktop application as possible.
5 years ago
## Getting started
10 years ago
This section assumes you want to get started quickly, the following sections explain the
steps in more detail. So let's start.
5 years ago
### Setting up MariaDB container
10 years ago
```bash
5 years ago
$ docker run --rm --name ttrssdb -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mariadb:latest
10 years ago
```
5 years ago
### Setting up TTRSS container
10 years ago
```bash
5 years ago
$ docker run -d --link ttrssdb:ttrssdb -p 8080:80 \
-e DB_TYPE=mysql \
-e DB_HOST=ttrssdb \
-e DB_PORT=3306 \
-e DB_NAME=servers_ttrss \
-e DB_USER=root \
-e DB_PASS=my-secret-pw \
-e DB_ENV_USER=root \
-e DB_ENV_PASS=my-secret-pw \
-e SELF_URL_PATH=http://localhost:8080/ \
bunix42/ttrss
```
### First time access of the web webinterface
10 years ago
The above example exposes the Tiny Tiny RSS webinterface on port 80, so that you can browse to:
5 years ago
http://localhost:8080/
10 years ago
The default login credentials are:
10 years ago
* Username: admin
* Password: password
10 years ago
5 years ago
Obviously, you're recommended to change these as soon as possible.