1
0
mirror of https://github.com/hoellen/dockerfiles.git synced 2025-07-27 03:15:39 +00:00
Files
boring-nginx
matomo
nextcloud
nginx-php
privatebin
searx
unmaintained
boinc
cowrie
cryptpad
freshrss
rootfs
Dockerfile
README.md
ghost
isso
kippo-graph
libresonic
lutim
lychee
mastodon
mediawiki
nginx
parsoid
pgbouncer
rainloop
reverse
rtorrent-flood
rutorrent
tor
LICENSE
README.md
dockerfiles/unmaintained/freshrss/Dockerfile

31 lines
694 B
Docker
Raw Normal View History

2017-12-04 14:54:24 +01:00
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"]