1
0
mirror of https://github.com/hoellen/dockerfiles.git synced 2025-08-11 02:32:30 +00:00
Files
boring-nginx
cowrie
cryptpad
freshrss
rootfs
Dockerfile
README.md
ghost
isso
kippo-graph
libresonic
lychee
mastodon
mediawiki
nextcloud
nginx-php
parsoid
pgbouncer
piwik
privatebin
reverse
rtorrent-flood
searx
unmaintained
LICENSE
README.md
dockerfiles/freshrss/Dockerfile
2017-10-17 20:09:03 +02:00

31 lines
694 B
Docker

FROM wonderfall/nginx-php:7.1
ARG FRESHRSS_VER=1.8.0
ENV UID=991 GID=991 \
UPLOAD_MAX_SIZE=10M \
MEMORY_LIMIT=128M \
CRON_PERIOD=30m
RUN apk -U add --no-cache \
tar \
libressl \
ca-certificates \
&& mkdir freshrss && cd freshrss \
&& wget -qO- https://github.com/FreshRSS/FreshRSS/archive/${FRESHRSS_VER}.tar.gz | tar xz --strip 1 \
&& mv data data_tmp
COPY rootfs /
RUN chmod +x /usr/local/bin/run.sh /etc/s6.d/*/* /etc/s6.d/.s6-svscan/*
VOLUME /freshrss/data /php/session
EXPOSE 8888
LABEL maintainer="Wonderfall <wonderfall@targaryen.house>" \
description="A free, self-hostable aggregator" \
version="FreshRSS ${FRESHRSS_VER}"
CMD ["run.sh"]