mirror of
https://git.tt-rss.org/fox/ttrss-docker-compose
synced 2025-06-09 14:39:53 +02:00
initial
This commit is contained in:
commit
a1f1862ba2
8 changed files with 185 additions and 0 deletions
15
app/Dockerfile
Normal file
15
app/Dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
FROM alpine:3.9
|
||||
EXPOSE 9000/tcp
|
||||
|
||||
RUN apk add --no-cache php7 php7-fpm \
|
||||
php7-pdo php7-gd php7-pgsql php7-pdo_pgsql php7-mbstring \
|
||||
php7-intl php7-xml php7-curl php7-session \
|
||||
php7-dom php7-fileinfo php7-json \
|
||||
git postgresql-client dcron sudo
|
||||
|
||||
ADD startup.sh /
|
||||
ADD scripts/update /etc/periodic/15min/
|
||||
|
||||
RUN sed -i.bak 's/^listen = 127.0.0.1:9000/listen = 9000/' /etc/php7/php-fpm.d/www.conf
|
||||
|
||||
CMD /startup.sh
|
Loading…
Add table
Add a link
Reference in a new issue