Update README.md

This commit is contained in:
x86dev 2020-11-23 08:45:57 +01:00 committed by GitHub
parent e4a2c0ff84
commit 5b6dadf9fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,7 @@
This Dockerfile installs Tiny Tiny RSS (TT-RSS) with the following features:
- **New:** Now uses a dedicated volume for the Postgres database data
- **New:** Integrated [Feedly-ish theme](https://github.com/Gravemind/tt-rss-feedlish-theme) for supporting latest TT-RSS versions
- **New:** When starting the container, the default theme will be (re-)applied. This should help when a theme breaks (again)
- Based on [Docker-Alpine](https://github.com/gliderlabs/docker-alpine) and [s6](http://skarnet.org/software/s6/) as the supervisor
@ -40,7 +41,7 @@ Create a new database volume:
Create a Postgres database instance:
```bash
# DB=$(docker run -d --restart-always --name ttrss-db -v ttrss-db:/var/lib/postgresql/data -e POSTGRES_PASSWORD=password postgres:alpine)
# DB=$(docker run -d --restart=always --name ttrss-db -v ttrss-db:/var/lib/postgresql/data -e POSTGRES_PASSWORD=password postgres:alpine)
```
Next, run the actual TT-RSS instance by doing a: