Added plugin for supporting synchronization for News+ on Android.
This commit is contained in:
parent
264d1a67d7
commit
d1216415b9
@ -13,3 +13,6 @@ openssl req -new -newkey rsa:2048 -days 3650 -nodes -x509 \
|
||||
-out "/etc/ssl/certs/ttrss.cert"
|
||||
chmod 600 "/etc/ssl/private/ttrss.key"
|
||||
chmod 600 "/etc/ssl/certs/ttrss.cert"
|
||||
|
||||
# Configure Nginx so that is doesn't show its version number in the HTTP headers.
|
||||
sed -i -e "s/.*server_tokens.*/server_tokens off;/g" /etc/nginx/nginx.conf
|
||||
|
||||
13
Dockerfile
13
Dockerfile
@ -8,7 +8,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \
|
||||
# php5-mysql
|
||||
|
||||
# add ttrss as the only nginx site
|
||||
ADD ttrss.nginx.conf /etc/nginx/sites-available/ttrss
|
||||
ADD ttrss-nginx.conf /etc/nginx/sites-available/ttrss
|
||||
RUN ln -s /etc/nginx/sites-available/ttrss /etc/nginx/sites-enabled/ttrss
|
||||
RUN rm /etc/nginx/sites-enabled/default
|
||||
|
||||
@ -39,11 +39,15 @@ ADD ttrss-plugin-mobilize.pgsql /var/www/ttrss/plugins/mobilize/ttrss-plugin-mob
|
||||
# patch ttrss-mobilize plugin for getting it to work
|
||||
RUN sed -i -e "s/<? */<?php/" /var/www/ttrss/plugins/mobilize/m.php
|
||||
|
||||
# install tt-rss-newsplus-plugin (for use with News+ on Android)
|
||||
RUN git clone https://github.com/hrk/tt-rss-newsplus-plugin.git /var/www/ttrss/plugins/api_newsplus
|
||||
RUN ln -s /var/www/ttrss/plugins/api_newsplus/api_newsplus/init.php /var/www/ttrss/plugins/api_newsplus/init.php
|
||||
|
||||
# apply ownership of ttrss + addons to www-data
|
||||
RUN chown www-data:www-data -R /var/www
|
||||
|
||||
# expose only nginx HTTP port
|
||||
EXPOSE 80
|
||||
# expose nginx HTTPS port
|
||||
EXPOSE 443
|
||||
|
||||
# expose default database credentials via ENV in order to ease overwriting
|
||||
ENV DB_NAME ttrss
|
||||
@ -56,6 +60,9 @@ ADD utils.php /root/utils.php
|
||||
ADD configure-db.php /root/configure-db.php
|
||||
ADD configure-plugin-mobilize.php /root/configure-plugin-mobilize.php
|
||||
|
||||
# Enable additional system plugins: api_newsplus
|
||||
RUN sed -i -e "s/.*define('PLUGINS'.*/define('PLUGINS', 'api_newsplus, auth_internal, note, updater');/g" /var/www/ttrss/config.php
|
||||
|
||||
RUN mkdir /etc/service/nginx
|
||||
ADD service-nginx.sh /etc/service/nginx/run
|
||||
|
||||
|
||||
35
README.md
35
README.md
@ -4,8 +4,9 @@ This Dockerfile installs Tiny Tiny RSS with the following features:
|
||||
|
||||
- Integrated [Feedly theme](https://github.com/levito/tt-rss-feedly-theme)
|
||||
- Integrated [mobilize plugin](https://github.com/sepich/tt-rss-mobilize) for using Readability, Instapaper + Google Mobilizer
|
||||
- New: Integrated [tt-rss-newsplus-plugin](https://github.com/hrk/tt-rss-newsplus-plugin) for News+ for Android
|
||||
- Self-signed 2048-bit RSA TLS certificate for accessing Tiny Tiny RSS via https
|
||||
- Originally was based on [clue/docker-ttrss.git](https://github.com/clue/docker-ttrss)
|
||||
- Originally was based on [clue/docker-ttrss](https://github.com/clue/docker-ttrss)
|
||||
|
||||
Feel free to tweak this further to your likings.
|
||||
|
||||
@ -29,7 +30,7 @@ And because this docker image is available as a [trusted build on the docker ind
|
||||
using it is as simple as launching this Tiny Tiny RSS installation linked to your fresh database:
|
||||
|
||||
```bash
|
||||
$ docker run -d --link $DB:db -p 443:443 --name ttrss <this-image>
|
||||
$ docker run -d --link $DB:db -p 443:443 --name ttrss x86dev/docker-ttrss
|
||||
```
|
||||
|
||||
Running this command for the first time will download the image automatically.
|
||||
@ -76,7 +77,7 @@ This is particular useful for your initial database setup, as errors get reporte
|
||||
the console and further execution will halt.
|
||||
|
||||
```bash
|
||||
$ sudo docker run -it --link ttrss-data:db -p 443:443 --name ttrss <this-image>
|
||||
$ sudo docker run -it --link ttrss-data:db -p 443:443 --name ttrss x86dev/docker-ttrss
|
||||
```
|
||||
|
||||
##### Database configuration
|
||||
@ -112,5 +113,31 @@ Remaining arguments can be passed just like before, the following is the recomme
|
||||
minimum:
|
||||
|
||||
```bash
|
||||
$ sudo docker run -d --link ttrss-data:db -p 443:443 --name ttrss <this-image>
|
||||
$ sudo docker run -d --link ttrss-data:db -p 443:443 --name ttrss x86dev/docker-ttrss
|
||||
```
|
||||
|
||||
##### Backing up / moving to another server
|
||||
|
||||
Decided to back up your data container and/or move to another server? Here's how
|
||||
you do it:
|
||||
|
||||
On the old server, stop your ttrss container and then do:
|
||||
|
||||
```
|
||||
docker commit -m "Backup of XXX" <CONTAINER NAME>
|
||||
docker save <IMAGE CREATED BY COMMIT> > /tmp/<filename>.tar
|
||||
```
|
||||
|
||||
On the new server, copy the created .tar file from the old server and
|
||||
import the file with:
|
||||
|
||||
```
|
||||
docker load < <filename.tar>
|
||||
```
|
||||
|
||||
This will load the container from the .tar file into Docker's local registry.
|
||||
After that you can run that imported container again the usual way with:
|
||||
|
||||
```
|
||||
docker run -d <IMAGE ID>
|
||||
```
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user