Skip to content

Commit

Permalink
LegacyKeyValueFormat: "ENV key=value" should be used instead of legac…
Browse files Browse the repository at this point in the history
…y "ENV key value"
  • Loading branch information
rednoah committed Aug 14, 2024
1 parent dc42a12 commit 36436b3
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 48 deletions.
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ubuntu:22.04
LABEL maintainer="Reinhard Pointner <rednoah@filebot.net>"


ENV FILEBOT_VERSION 5.1.4
ENV FILEBOT_VERSION="5.1.4"


RUN set -eux \
Expand Down Expand Up @@ -31,13 +31,13 @@ RUN set -eux \
COPY generic /


ENV HOME /data
ENV LANG C.UTF-8
ENV HOME="/data"
ENV LANG="C.UTF-8"

ENV PUID 1000
ENV PGID 1000
ENV PUSER filebot
ENV PGROUP filebot
ENV PUID="1000"
ENV PGID="1000"
ENV PUSER="filebot"
ENV PGROUP="filebot"


ENTRYPOINT ["/opt/bin/run-as-user", "/opt/bin/run", "/usr/bin/filebot"]
14 changes: 7 additions & 7 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ FROM openjdk:17-alpine
LABEL maintainer="Reinhard Pointner <rednoah@filebot.net>"


ENV FILEBOT_VERSION 5.1.4
ENV FILEBOT_URL https://get.filebot.net/filebot/FileBot_$FILEBOT_VERSION/FileBot_$FILEBOT_VERSION-portable.tar.xz
ENV FILEBOT_SHA256 504806ddb413e463cc7e1fe7c42d5a5c6b1bf07284e4ebf96b1d142e32ebef75
ENV FILEBOT_VERSION="5.1.4"
ENV FILEBOT_URL="https://get.filebot.net/filebot/FileBot_$FILEBOT_VERSION/FileBot_$FILEBOT_VERSION-portable.tar.xz"
ENV FILEBOT_SHA256="504806ddb413e463cc7e1fe7c42d5a5c6b1bf07284e4ebf96b1d142e32ebef75"

ENV FILEBOT_HOME /opt/filebot
ENV FILEBOT_HOME="/opt/filebot"


RUN apk add --update mediainfo chromaprint p7zip unrar \
Expand All @@ -27,9 +27,9 @@ RUN set -eux \
&& ln -s /data /opt/filebot/data


ENV HOME /data
ENV LANG C.UTF-8
ENV FILEBOT_OPTS "-Dapplication.deployment=docker -Dnet.filebot.archive.extractor=ShellExecutables -Duser.home=$HOME"
ENV HOME="/data"
ENV LANG="C.UTF-8"
ENV FILEBOT_OPTS="-Dapplication.deployment=docker -Dnet.filebot.archive.extractor=ShellExecutables -Duser.home=$HOME"


ENTRYPOINT ["/opt/filebot/filebot.sh"]
6 changes: 3 additions & 3 deletions Dockerfile.beta
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ RUN set -eux \


# build trigger and cache buster
ENV FILEBOT_REVISION=r10362
ENV FILEBOT_REVISION="r10362"


ENV FILEBOT_VERSION=5.1.4
ENV FILEBOT_URL=https://get.filebot.net/filebot/BETA/FileBot_${FILEBOT_VERSION}_universal.deb
ENV FILEBOT_VERSION="5.1.4"
ENV FILEBOT_URL="https://get.filebot.net/filebot/BETA/FileBot_${FILEBOT_VERSION}_universal.deb"


RUN set -eux \
Expand Down
14 changes: 7 additions & 7 deletions Dockerfile.graalvm
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ FROM ghcr.io/graalvm/graalvm-ce:latest
LABEL maintainer="Reinhard Pointner <rednoah@filebot.net>"


ENV FILEBOT_VERSION 5.1.4
ENV FILEBOT_URL https://get.filebot.net/filebot/FileBot_$FILEBOT_VERSION/FileBot_$FILEBOT_VERSION-portable.tar.xz
ENV FILEBOT_SHA256 504806ddb413e463cc7e1fe7c42d5a5c6b1bf07284e4ebf96b1d142e32ebef75
ENV FILEBOT_VERSION="5.1.4"
ENV FILEBOT_URL="https://get.filebot.net/filebot/FileBot_$FILEBOT_VERSION/FileBot_$FILEBOT_VERSION-portable.tar.xz"
ENV FILEBOT_SHA256="504806ddb413e463cc7e1fe7c42d5a5c6b1bf07284e4ebf96b1d142e32ebef75"


ENV FILEBOT_HOME /opt/filebot
ENV FILEBOT_HOME="/opt/filebot"


RUN microdnf install glibc-langpack-en xz \
Expand All @@ -28,9 +28,9 @@ RUN set -eux \
&& ln -s /data /opt/filebot/data


ENV HOME /data
ENV LANG C.UTF-8
ENV FILEBOT_OPTS "-Dapplication.deployment=docker -Duser.home=$HOME"
ENV HOME="/data"
ENV LANG="C.UTF-8"
ENV FILEBOT_OPTS="-Dapplication.deployment=docker -Duser.home=$HOME"


RUN set -eux \
Expand Down
14 changes: 7 additions & 7 deletions Dockerfile.node
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ FROM rednoah/filebot
LABEL maintainer="Reinhard Pointner <rednoah@filebot.net>"


ENV FILEBOT_NODE_VERSION 0.4.7
ENV FILEBOT_NODE_URL https://github.com/filebot/filebot-node/releases/download/$FILEBOT_NODE_VERSION/filebot-node_$FILEBOT_NODE_VERSION.tar.xz
ENV FILEBOT_NODE_SHA256 479350e974e6f5fded581a54ff74c312a339a76ff86d9883261e94b051ca1a38
ENV FILEBOT_NODE_VERSION="0.4.7"
ENV FILEBOT_NODE_URL="https://github.com/filebot/filebot-node/releases/download/$FILEBOT_NODE_VERSION/filebot-node_$FILEBOT_NODE_VERSION.tar.xz"
ENV FILEBOT_NODE_SHA256="479350e974e6f5fded581a54ff74c312a339a76ff86d9883261e94b051ca1a38"


ENV FILEBOT_NODE_HOME /opt/filebot-node
ENV FILEBOT_NODE_HOME="/opt/filebot-node"


RUN set -eux \
Expand All @@ -31,9 +31,9 @@ RUN set -eux \
COPY node /


ENV FILEBOT_NODE_AUTH NONE
ENV FILEBOT_NODE_HTTP YES
ENV FILEBOT_NODE_HTTP_PORT 5452
ENV FILEBOT_NODE_AUTH="NONE"
ENV FILEBOT_NODE_HTTP="YES"
ENV FILEBOT_NODE_HTTP_PORT="5452"


EXPOSE $FILEBOT_NODE_HTTP_PORT
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.watcher
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL maintainer="Reinhard Pointner <rednoah@filebot.net>"

COPY watcher /

ENV SETTLE_DOWN_TIME "300"
ENV SETTLE_DOWN_CHECK "5 seconds ago"
ENV SETTLE_DOWN_TIME="300"
ENV SETTLE_DOWN_CHECK="5 seconds ago"

ENTRYPOINT ["/opt/bin/run-as-user", "/opt/bin/run", "/opt/bin/filebot-watcher"]
24 changes: 12 additions & 12 deletions Dockerfile.webdav
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ RUN set -eux \
COPY webdav /


ENV HOME /data
ENV LANG C.UTF-8
ENV HOME="/data"
ENV LANG="C.UTF-8"

ENV PUID 1000
ENV PGID 1000
ENV PUSER httpd
ENV PGROUP httpd
ENV PUID="1000"
ENV PGID="1000"
ENV PUSER="httpd"
ENV PGROUP="httpd"

ENV REALM "WebDAV"
ENV USERNAME "anonymous"
ENV PASSWORD ""
ENV REALM="WebDAV"
ENV USERNAME="anonymous"
ENV PASSWORD=""

ENV ROOT /volume1
ENV HOST localhost
ENV PORT 8080
ENV ROOT="/volume1"
ENV HOST="localhost"
ENV PORT="8080"


EXPOSE 8080
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.xpra
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ RUN set -eux \
COPY xpra /


ENV XPRA_BIND 0.0.0.0
ENV XPRA_PORT 5454
ENV XPRA_AUTH none
ENV XPRA_BIND="0.0.0.0"
ENV XPRA_PORT="5454"
ENV XPRA_AUTH="none"


EXPOSE $XPRA_PORT
Expand Down

0 comments on commit 36436b3

Please sign in to comment.