FROM ubuntu # Based on work of Christian Lück MAINTAINER Andreas Löffler RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \ nginx git supervisor php5-fpm php5-cli php5-curl php5-gd php5-json \ php5-pgsql # php5-mysql # add ttrss as the only nginx site 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 # patch php5-fpm configuration so that it does not daemonize itself. This is # needed because supervisord can watch its state RUN sed -i -e "s/;daemonize\s*=\s*yes/daemonize = no/g" /etc/php5/fpm/php-fpm.conf # patch the php-fpm's listening method to _always_ use a unix socket # note: if not done correctly this will result in a "502 Bad Gateway" error # (see /var/log/nginx/error.log for more information then) RUN sed -i -e "s/listen\s*=.*/listen = \/var\/run\/php5-fpm.sock/g" /etc/php5/fpm/pool.d/www.conf # install ttrss and patch configuration RUN git clone https://github.com/gothfox/Tiny-Tiny-RSS.git /var/www/ttrss WORKDIR /var/www/ttrss RUN cp config.php-dist config.php RUN sed -i -e "/'SELF_URL_PATH'/s/ '.*'/ 'http:\/\/localhost\/'/" config.php # install Feedly theme RUN git clone https://github.com/levito/tt-rss-feedly-theme.git RUN ln -s /var/www/ttrss/tt-rss-feedly-theme/feedly /var/www/ttrss/themes/feedly RUN ln -s /var/www/ttrss/tt-rss-feedly-theme/feedly.css /var/www/ttrss/themes/feedly.css # install ttrss-mobilize plugin RUN git clone https://github.com/sepich/tt-rss-mobilize.git /var/www/ttrss/plugins/mobilize ADD ttrss-plugin-mobilize.pgsql /var/www/ttrss/plugins/mobilize/ttrss-plugin-mobilize.pgsql # patch ttrss-mobilize plugin for getting it to work RUN sed -i -e "s/