From 6a2a84ba8e2fa31abe48f47a107fca2a511c0d54 Mon Sep 17 00:00:00 2001 From: Keller Date: Sun, 12 Apr 2026 20:57:08 +0300 Subject: [PATCH] v.9.4.5 for ch.2 --- build/{ => 8.1.1}/Dockerfile | 0 build/{ => 8.1.1}/supervisord.conf | 0 build/9.4.5/Dockerfile | 13 +++++++++++++ build/9.4.5/supervisord.conf | 12 ++++++++++++ 4 files changed, 25 insertions(+) rename build/{ => 8.1.1}/Dockerfile (100%) rename build/{ => 8.1.1}/supervisord.conf (100%) create mode 100644 build/9.4.5/Dockerfile create mode 100644 build/9.4.5/supervisord.conf diff --git a/build/Dockerfile b/build/8.1.1/Dockerfile similarity index 100% rename from build/Dockerfile rename to build/8.1.1/Dockerfile diff --git a/build/supervisord.conf b/build/8.1.1/supervisord.conf similarity index 100% rename from build/supervisord.conf rename to build/8.1.1/supervisord.conf diff --git a/build/9.4.5/Dockerfile b/build/9.4.5/Dockerfile new file mode 100644 index 0000000..f44da32 --- /dev/null +++ b/build/9.4.5/Dockerfile @@ -0,0 +1,13 @@ +FROM debian:bullseye +COPY kerio-control-vpnclient-9.4.5-8629-linux-amd64.deb /tmp/ +ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get update \ + && dpkg --unpack /tmp/kerio-control-vpnclient-9.4.5-8629-linux-amd64.deb \ + && rm -f /var/lib/dpkg/info/kerio-control-vpnclient.postinst \ + && apt-get install -y -f \ + && apt-get install -y -f supervisor debconf \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* +COPY supervisord.conf /etc/supervisor/conf.d/kerio.conf +WORKDIR /root +CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/supervisord.conf"] diff --git a/build/9.4.5/supervisord.conf b/build/9.4.5/supervisord.conf new file mode 100644 index 0000000..b261008 --- /dev/null +++ b/build/9.4.5/supervisord.conf @@ -0,0 +1,12 @@ +[supervisord] +nodaemon=true + +[program:kerio-vpn] +command=/etc/init.d/kerio-kvc start +autostart=true +autorestart=true +process_name=kvpncsvc +stdout_logfile=/dev/stdout +stdout_logfile_maxbytes=0 +stderr_logfile=/dev/stderr +stderr_logfile_maxbytes=0 \ No newline at end of file