This repository has been archived on 2021-08-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ttrss/Dockerfile
2018-12-12 20:07:59 +01:00

31 lines
681 B
Docker

FROM alpine:3.8
# https://git.tt-rss.org/fox/tt-rss/wiki/InstallationNotes
# https://github.com/clue/docker-ttrss/blob/master/Dockerfile
# https://github.com/linuxserver/docker-tt-rss/blob/master/Dockerfile
ADD https://git.tt-rss.org/fox/tt-rss/archive/18.12.tar.gz /tmp/ttrss.tar.gz
RUN tar -xzf /tmp/ttrss.tar.gz
RUN \
echo "**** install packages ****" && \
apk add --no-cache \
curl \
php7-apcu \
php7-curl \
php7-dom \
php7-gd \
php7-iconv \
php7-intl \
php7-mcrypt \
php7-pcntl \
php7-pdo_pgsql \
php7-pgsql \
php7-posix \
tar && \
echo "**** link php7 to php ****" && \
ln -sf /usr/bin/php7 /usr/bin/php
#copy config + delete install.php