1
0
docker-ttrss/Dockerfile

57 lines
1.6 KiB
Docker
Raw Normal View History

FROM ubuntu:18.04
2017-08-14 10:07:26 +00:00
MAINTAINER Hanjo Meinhardt <hanjo@bunix.de>
2014-04-26 17:24:57 +02:00
ARG TTRSS_GIT_TAG=master
RUN apt-get update && 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 21:15:39 +02:00
php7.2-intl \
php7.2-mbstring \
php7.2-xml \
curl \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
2014-04-26 17:24:57 +02:00
# enable the mcrypt module
#RUN php7enmod mcrypt
2014-04-26 17:24:57 +02:00
# 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
# install ttrss and patch configuration
WORKDIR /var/www
#RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl --no-install-recommends && rm -rf /var/lib/apt/lists/* \
# && apt-get purge -y --auto-remove curl \
2019-05-22 18:24:25 +02:00
RUN curl -SL https://git.tt-rss.org/git/tt-rss/archive/$TTRSS_GIT_TAG.tar.gz | tar xzC /var/www --strip-components 1
RUN cp config.php-dist config.php \
&& chown www-data:www-data -R /var/www \
2019-05-21 21:15:39 +02:00
&& mkdir /var/run/php
2014-04-26 17:24:57 +02:00
# expose only nginx HTTP port
EXPOSE 80
2015-02-21 15:48:03 +01:00
# complete path to ttrss
ENV SELF_URL_PATH http://localhost
2014-04-26 17:24:57 +02:00
# expose default database credentials via ENV in order to ease overwriting
ENV DB_NAME ttrss
ENV DB_USER ttrss
ENV DB_PASS ttrss
# 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