1
0
docker-ttrss/Dockerfile

61 lines
1.9 KiB
Docker
Raw Permalink Normal View History

FROM ubuntu:18.04 AS builder
2014-04-26 15:24:57 +00:00
ARG TTRSS_GIT_TAG=master
ARG FEEDLY_GIT_TAG=master
# install curl to fetch stuff
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
curl
# download tagged version of tt-rss sources
RUN mkdir -p /download/ttrss \
&& curl -SL https://git.tt-rss.org/git/tt-rss/archive/$TTRSS_GIT_TAG.tar.gz | tar xzC /download/ttrss --strip-components 1
# download some themes
RUN mkdir -p /download/feedly-theme \
2019-05-22 18:26:38 +00:00
&& curl -SL https://github.com/levito/tt-rss-feedly-theme/archive/$FEEDLY_GIT_TAG.tar.gz | tar xzC /download/feedly-theme --strip-components 1
FROM ubuntu:18.04
MAINTAINER Hanjo Meinhardt <hanjo@bunix.de>
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
nginx \
supervisor \
php7.2-fpm \
php7.2-cli \
php7.2-curl \
php7.2-gd \
php7.2-json \
php7.2-pgsql \
php7.2-mysql \
2019-05-21 19:15:39 +00:00
php7.2-intl \
php7.2-mbstring \
php7.2-xml \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
2014-04-26 15:24:57 +00:00
# add ttrss as the only nginx site
ADD ttrss.nginx.conf /etc/nginx/sites-available/ttrss
2019-05-22 18:07:10 +00:00
RUN ln -s /etc/nginx/sites-available/ttrss /etc/nginx/sites-enabled/ttrss \
&& rm /etc/nginx/sites-enabled/default
2014-04-26 15:24:57 +00:00
# install ttrss and patch configuration
WORKDIR /var/www
# copy the ttrss sources
COPY --from=builder /download/ttrss ./
# copy the feedly theme files
COPY --from=builder /download/feedly-theme/feedly ./themes.local/feedly/
COPY --from=builder /download/feedly-theme/feedly*.css ./themes.local/
2019-05-22 16:24:25 +00:00
# prepare the runtime environment
2019-05-22 16:24:25 +00:00
RUN cp config.php-dist config.php \
&& chown www-data:www-data -R /var/www \
&& mkdir -p /var/run/php
2014-04-26 15:24:57 +00:00
# always re-configure database with current ENV when RUNning container, then monitor all services
ADD configure-db.php /configure-db.php
ADD supervisord.conf /etc/supervisor/conf.d/supervisord.conf
CMD php /configure-db.php && supervisord -c /etc/supervisor/conf.d/supervisord.conf