From 85b724b027eee79302ea81b239f9a33d09c055b9 Mon Sep 17 00:00:00 2001 From: "Arnaud G. GIBERT" Date: Wed, 28 May 2025 19:27:03 +0200 Subject: [PATCH] - Fix MICROSOCKS_OPTIONS env variable handlig bug. --- Dockerfile | 2 +- ReleaseNotes.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b1038d1..651d41b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ chown -R microsocks:microsocks '${MICROSOCKS_LIB} #--------------------------------------------------------------------------------------------------------------- ARG MICROSOCKSD_INI='[program:microsockd] \n\ directory='${MICROSOCKS_HOME}' \n\ -command=microsocks ${MICROSOCKS_OPTIONS} \n\ +command=/bin/bash -c `microsocks ${MICROSOCKS_OPTIONS}` \n\ user=microsocks' #--------------------------------------------------------------------------------------------------------------- diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 4c45eb8..9ecce44 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -4,7 +4,8 @@ Rx3-Docker/MicroSocks V 1.0.2 - A. GIBERT - 2025/05/28 - Use now rx3-docker/server:1.2.3-mga9 image, - Enable DNS forwarding to prevent DNS leak! -- Remove myip installation allready installed on server image. +- Remove myip installation allready installed on server image, +- Fix MICROSOCKS_OPTIONS env variable handlig bug.