1
0
docker-ttrss/Dockerfile

35 lines
1.2 KiB
Docker
Raw Normal View History

FROM alpine:3.4
2014-04-26 15:24:57 +00:00
MAINTAINER Christian Lück <christian@lueck.tv>
RUN apk add --update nginx s6 php5-fpm php5-cli php5-curl php5-gd php5-json php5-dom php5-pcntl php5-posix \
php5-pgsql php5-mysql php5-mcrypt php5-pdo php5-pdo_pgsql php5-pdo_mysql ca-certificates && \
rm -rf /var/cache/apk/*
2014-04-26 15:24:57 +00:00
# add ttrss as the only nginx site
ADD ttrss.nginx.conf /etc/nginx/nginx.conf
2014-04-26 15:24:57 +00:00
# install ttrss and patch configuration
WORKDIR /var/www
RUN apk add --update --virtual build-dependencies curl tar \
&& curl -SL https://tt-rss.org/gitlab/fox/tt-rss/repository/archive.tar.gz?ref=master | tar xzC /var/www --strip-components 1 \
&& apk del build-dependencies \
&& rm -rf /var/cache/apk/* \
&& cp config.php-dist config.php \
&& chown nobody:nginx -R /var/www
2014-04-26 15:24:57 +00:00
# expose only nginx HTTP port
EXPOSE 80
2015-02-21 14:48:03 +00:00
# complete path to ttrss
ENV SELF_URL_PATH http://localhost
2014-04-26 15:24:57 +00: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 s6/ /etc/s6/
CMD php /configure-db.php && s6-svscan /etc/s6/