From 09cba4140a90cceac920f4f99ecb05a7b5615518 Mon Sep 17 00:00:00 2001 From: Vitalii Vokhmin Date: Tue, 20 Jan 2015 23:42:32 +0200 Subject: [PATCH] Feedly theme and videoframes plugin added --- Dockerfile | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index bf93968..097bc65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,12 +10,25 @@ 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 +ENV CODE_DIR /var/www + # install ttrss and patch configuration -RUN git clone https://github.com/gothfox/Tiny-Tiny-RSS.git /var/www -WORKDIR /var/www +RUN git clone https://github.com/gothfox/Tiny-Tiny-RSS.git $CODE_DIR +WORKDIR $CODE_DIR RUN cp config.php-dist config.php RUN sed -i -e "/'SELF_URL_PATH'/s/ '.*'/ 'http:\/\/localhost\/'/" config.php -RUN chown www-data:www-data -R /var/www +RUN chown www-data:www-data -R $CODE_DIR + +# install feedly theme +WORKDIR $CODE_DIR/themes +RUN git clone https://github.com/levito/tt-rss-feedly-theme.git +RUN ln -s tt-rss-feedly-theme/feedly.css +RUN ln -s tt-rss-feedly-theme/feedly + +# install videoframes plugin +WORKDIR $CODE_DIR/plugins +RUN git clone https://github.com/tribut/ttrss-videoframes.git +RUN ln -s ttrss-videoframes/videoframes # expose only nginx HTTP port EXPOSE 80