Compare commits

...

12 Commits

Author SHA1 Message Date
Robert Kaussow 639f9c4a96
chore: add PHP extension php8-openssl
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
2022-09-10 19:27:34 +02:00
Renovator Bot fa43008a00 chore(deps): update dependency freshrss/freshrss to v1.20.0 (#75)
continuous-integration/drone/push Build is passing Details
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
2022-09-10 19:23:54 +02:00
Renovator Bot b4ae2848d3 chore(docker): update thegeeklab/nginx digest to 2b109ed
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2022-08-09 20:03:08 +00:00
Renovator Bot 75055703cc chore(docker): update thegeeklab/nginx digest to e18dc38
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2022-08-06 20:03:05 +00:00
Renovator Bot f93e763a4c chore(docker): update thegeeklab/nginx digest to c555262
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2022-08-05 03:02:57 +00:00
Renovator Bot e37a6695b6 chore(docker): update thegeeklab/nginx digest to de15bcb
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2022-07-19 01:01:43 +00:00
Renovator Bot 813acd6104 chore(docker): update thegeeklab/nginx digest to a2f535c
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2022-07-13 10:02:59 +00:00
Renovator Bot aecee7b56a chore(docker): update thegeeklab/nginx digest to c2ef4a5
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2022-06-28 23:02:57 +00:00
Robert Kaussow d345c9f40f
fix: replace deprecated gomplate conversion
continuous-integration/drone/push Build is passing Details
2022-06-28 22:27:29 +02:00
Renovator Bot 375aff7323 chore(docker): update thegeeklab/nginx digest to e52460c
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2022-06-21 20:02:57 +00:00
Renovator Bot df2521d33f chore(docker): update thegeeklab/nginx digest to 1056eaf
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2022-06-21 14:02:58 +00:00
Robert Kaussow 00c77c69ef
fix: force curl to fail on error
continuous-integration/drone/push Build is passing Details
2022-06-21 15:15:16 +02:00
2 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
FROM thegeeklab/nginx:latest@sha256:513f14c0fd3f5dadf02205ebf4d75b30d204df5df21e2fe0b0f1599f58f3fe85
FROM thegeeklab/nginx:latest@sha256:2b109edf48831dc1f9b916472705da85dc632189eb11d1bffb440a42dab068b3
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
@ -10,7 +10,7 @@ LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/docker/fre
ARG BUILD_VERSION
# renovate: datasource=github-releases depName=FreshRSS/FreshRSS
ENV FRESHRSS_VERSION="${BUILD_VERSION:-1.19.2}"
ENV FRESHRSS_VERSION="${BUILD_VERSION:-1.20.0}"
ADD overlay/ /
@ -18,16 +18,16 @@ RUN apk --update add --virtual .build-deps tar curl && \
apk --update add php8 php8-curl php8-fpm php8-gmp php8-intl php8-mbstring php8-xml \
php8-zip php8-ctype php8-dom php8-fileinfo php8-iconv php8-json php8-opcache php8-phar \
php8-session php8-simplexml php8-xmlreader php8-xmlwriter php8-tokenizer php8-zlib \
php8-pdo_sqlite php8-pdo_mysql php8-pdo_pgsql && \
php8-openssl php8-pdo_sqlite php8-pdo_mysql php8-pdo_pgsql && \
rm -rf /var/www/localhost && \
rm -f /etc/php8/php-fpm.d/www.conf && \
mkdir -p /var/www/app && \
mkdir /var/www/.postgresql && \
FRESHRSS_VERSION="${FRESHRSS_VERSION##v}" && \
echo "Installing FreshRSS version '${FRESHRSS_VERSION}' ..." && \
curl -SsL "https://github.com/FreshRSS/FreshRSS/archive/${FRESHRSS_VERSION}.tar.gz" | \
curl -SsfL "https://github.com/FreshRSS/FreshRSS/archive/${FRESHRSS_VERSION}.tar.gz" | \
tar xz -C /var/www/app/ -X /.tarignore --strip-components=1 && \
curl -SsL -o /etc/php8/browscap.ini https://browscap.org/stream?q=Lite_PHP_BrowsCapINI && \
curl -SsfL -o /etc/php8/browscap.ini https://browscap.org/stream?q=Lite_PHP_BrowsCapINI && \
apk del .build-deps && \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/* && \

View File

@ -29,25 +29,25 @@ return array(
),
'curl_options' => array(
{{- if not (bool (getenv "FRESHRSS_CURLOPT_SSL_VERIFYHOST" "true")) }}
{{- if not (getenv "FRESHRSS_CURLOPT_SSL_VERIFYHOST" "true" | conv.ToBool) }}
CURLOPT_SSL_VERIFYHOST => {{ getenv "FRESHRSS_CURLOPT_SSL_VERIFYHOST" }},
{{- end }}
{{- if not (bool (getenv "FRESHRSS_CURLOPT_SSL_VERIFYPEER" "true")) }}
{{- if not (getenv "FRESHRSS_CURLOPT_SSL_VERIFYPEER" "true" | conv.ToBool) }}
CURLOPT_SSL_VERIFYPEER => {{ getenv "FRESHRSS_CURLOPT_SSL_VERIFYPEER" }},
{{- end }}
{{- if not (bool (getenv "FRESHRSS_CURLOPT_PROXYTYPE" "true")) }}
{{- if not (getenv "FRESHRSS_CURLOPT_PROXYTYPE" "true" | conv.ToBool) }}
CURLOPT_PROXYTYPE => {{ getenv "FRESHRSS_CURLOPT_PROXYTYPE" }},
{{- end }}
{{- if not (bool (getenv "FRESHRSS_CURLOPT_PROXY" "true" )) }}
{{- if not (getenv "FRESHRSS_CURLOPT_PROXY" "true" | conv.ToBool ) }}
CURLOPT_PROXY => '{{ getenv "FRESHRSS_CURLOPT_PROXY" }}',
{{- end }}
{{- if not (bool (getenv "FRESHRSS_CURLOPT_PROXYPORT" "true" )) }}
{{- if not (getenv "FRESHRSS_CURLOPT_PROXYPORT" "true" | conv.ToBool ) }}
CURLOPT_PROXYPORT => {{ getenv "FRESHRSS_CURLOPT_PROXYPORT" }},
{{- end }}
{{- if not (bool (getenv "FRESHRSS_CURLOPT_PROXYAUTH" "true" )) }}
{{- if not (getenv "FRESHRSS_CURLOPT_PROXYAUTH" "true" | conv.ToBool ) }}
CURLOPT_PROXYAUTH => {{ getenv "FRESHRSS_CURLOPT_PROXYAUTH" }},
{{- end }}
{{- if not (bool (getenv "FRESHRSS_CURLOPT_PROXYUSERPWD" "true" )) }}
{{- if not (getenv "FRESHRSS_CURLOPT_PROXYUSERPWD" "true" | conv.ToBool ) }}
CURLOPT_PROXYUSERPWD => '{{ getenv "FRESHRSS_CURLOPT_PROXYUSERPWD" }}',
{{- end }}
),