Compare commits
1 Commits
v0.0.3
...
29645cedac
| Author | SHA1 | Date | |
|---|---|---|---|
|
29645cedac
|
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
auto_https off
|
||||||
|
frankenphp
|
||||||
|
}
|
||||||
|
|
||||||
|
:8080 {
|
||||||
|
root * /app/public
|
||||||
|
encode zstd br gzip
|
||||||
|
try_files {path} /index.php?{query}
|
||||||
|
php_server
|
||||||
|
}
|
||||||
+19
-6
@@ -1,10 +1,23 @@
|
|||||||
ARG VERSION="latest"
|
FROM dunglas/frankenphp:1-php8.5-alpine
|
||||||
FROM "jcabillot/phpapache:${VERSION}"
|
|
||||||
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
|
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
|
||||||
|
|
||||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
RUN curl -s -L "https://github.com/RSS-Bridge/rss-bridge/tarball/master/" | tar -zx --strip=1
|
|
||||||
|
|
||||||
RUN echo "*" > "/var/www/html/whitelist.txt" && \
|
WORKDIR /app
|
||||||
mkdir -p /var/www/html/cache && \
|
|
||||||
chown -R www-data:www-data /var/www/html
|
# Install required PHP extensions for RSS-Bridge
|
||||||
|
RUN install-php-extensions mbstring simplexml curl json iconv
|
||||||
|
|
||||||
|
COPY Caddyfile /etc/frankenphp/Caddyfile
|
||||||
|
|
||||||
|
# Download RSS-Bridge
|
||||||
|
RUN curl -s -L "https://github.com/RSS-Bridge/rss-bridge/tarball/master/" | tar -zx --strip=1 -C /app/public
|
||||||
|
|
||||||
|
# Configure RSS-Bridge
|
||||||
|
RUN echo "*" > "/app/public/whitelist.txt" && \
|
||||||
|
mkdir -p /app/public/cache && \
|
||||||
|
chown -R www-data:www-data /app/public
|
||||||
|
|
||||||
|
RUN chown www-data:www-data /data/caddy && chmod 2770 /data/caddy
|
||||||
|
|
||||||
|
USER www-data
|
||||||
|
|||||||
+1
-15
@@ -1,17 +1,3 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
||||||
"customManagers": [
|
|
||||||
{
|
|
||||||
"customType": "regex",
|
|
||||||
"description": "Detect ARG VERSION pin for jcabillot/phpapache base image",
|
|
||||||
"managerFilePatterns": [
|
|
||||||
"/^Dockerfile$/"
|
|
||||||
],
|
|
||||||
"matchStrings": [
|
|
||||||
"ARG\\s+VERSION=\"(?<currentValue>[^\"]+)\""
|
|
||||||
],
|
|
||||||
"depNameTemplate": "jcabillot/phpapache",
|
|
||||||
"datasourceTemplate": "docker"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user