3 Commits

Author SHA1 Message Date
80cb257091 - Use now rx3-docker/server:1.2.6-mga9 image.
- Rebuild for updates.
2025-09-19 23:20:14 +02:00
a3123f18a6 - Update release date. 2025-09-03 10:54:10 +02:00
ec2809d453 - Fix old IP problem returned by MyIPD service. 2025-09-02 18:50:21 +02:00
4 changed files with 22 additions and 5 deletions

View File

@@ -40,14 +40,14 @@ user=microsocks'
#---------------------------------------------------------------------------------------------------------------
ARG MYIPD_INI='[program:myipd] \n\
directory='${MICROSOCKS_HOME}' \n\
command=/bin/bash -c `while true; do myip | nc -l -q 0 ${MYIPD_PORT}; done` \n\
command=/bin/bash -c `while true; do nc -l -q 0 -p ${MYIPD_PORT} -c myip; done` \n\
user=microsocks'
#---------------------------------------------------------------------------------------------------------------
RUN urpmi.update -a \
&& urpmi --force microsocks netcat-openbsd \
&& urpmi --force microsocks netcat-traditional \
&& mkdir ${MICROSOCKS_LIB} \
&& useradd -M --home-dir ${MICROSOCKS_HOME} --password "" microsocks \
&& echo -e "${MICROSOCKSD}" | sed -e "s/\`/'/g" -e 's/ *$//' > /etc/init.d/microsocksd \

View File

@@ -5,7 +5,7 @@ Welcome to Rx3-Docker/MicroSocks docker image!
This project aims to build a MicroSocks docker image.
Features:
- Curtently based on rx3-docker/server:1.2.5-mga9 image,
- Curtently based on rx3-docker/server:1.2.6-mga9 image,
- Use microsock 1.0.5,
- Support DNS forwarding to avoid DNS leaking,
- MyIPD service included.

View File

@@ -1,3 +1,20 @@
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/MicroSocks V 1.1.3 - A. GIBERT - 2025/09/19
------------------------------------------------------------------------------------------------------------------------------------
- Use now rx3-docker/server:1.2.6-mga9 image.
- Rebuild for updates.
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/MicroSocks V 1.1.2 - A. GIBERT - 2025/09/03
------------------------------------------------------------------------------------------------------------------------------------
- Fix old IP problem returned by MyIPD service.
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/MicroSocks V 1.1.1 - A. GIBERT - 2025/07/26
------------------------------------------------------------------------------------------------------------------------------------

View File

@@ -21,7 +21,7 @@ APPL_NAME="microsocks"
APPL_NAME_FULL="MicroSocks Proxy"
APPL_NAME_SHORT="micsoc"
APPL_ORG="rx3"
APPL_VERSION="1.1.1"
APPL_VERSION="1.1.3"
APPL_MAINTAINER='"Arnaud G. GIBERT" <arnaud@rx3.net>'
APPL_URL_PREFIX="${ORG_REGISTRY}/${APPL_ORG}"
@@ -73,7 +73,7 @@ DOCKER_TOOLS_VOLUME=SINGLE
# | Prefix | Name | URL Prefix | Name | Name Full | Version | URL Prefix | Name | Version | Name | Version | Ext | Int | Ext | Int | Name / Id | Name / Id |
#------------------+----------+--------------------------+--------------------+------------------+-------------------------------+----------------------+--------------------+---------------+------------+--------------+------------+-------+-------+-------+-------+--------------+--------------+
docker_service_add SP socks-proxy ${ORG_URL_PREFIX} microsocks "Rx3-Docker/MicroSocks" ${APPL_VERSION}-mga9 ${ORG_URL_PREFIX} server 1.2.5-mga9 - - 1080 1080 - - ${APPL_USER} ${APPL_GROUP}
docker_service_add SP socks-proxy ${ORG_URL_PREFIX} microsocks "Rx3-Docker/MicroSocks" ${APPL_VERSION}-mga9 ${ORG_URL_PREFIX} server 1.2.6-mga9 - - 1080 1080 - - ${APPL_USER} ${APPL_GROUP}