mirror of
https://github.com/3proxy/3proxy.git
synced 2026-04-12 16:00:11 +08:00
Dockerfiles updates:
- Build distroless from scratch - Static linking with NOSTDRESOLVE for minimal - SSLPlugin is supported in full, including chroot configuration - No need to specify full path for plugins chroot provides no additional security due to distroless, but is still supported for compatiblity reasons. Plugins, including SSL should work in chroot configuration. --read-only is recommended, no tmp directories are required.
This commit is contained in:
parent
238ed094dd
commit
98f8ec1464
@ -1,56 +1,66 @@
|
|||||||
# 3proxy.full is fully functional 3proxy build based on busybox:glibc
|
# 3proxy.full is fully functional 3proxy build based on busybox:glibc
|
||||||
#
|
#
|
||||||
|
# Example are for podman, for docker change 'podman' to 'docker'
|
||||||
|
#
|
||||||
#to build:
|
#to build:
|
||||||
# docker build -f Dockerfile.full -t 3proxy.full .
|
# podman build -f Dockerfile.full -t 3proxy.full .
|
||||||
#to run:
|
#to run:
|
||||||
# by default 3proxy uses safe chroot environment with chroot to /usr/local/3proxy with uid/gid 65535/65535 and expects
|
|
||||||
# configuration file to be placed in /usr/local/etc/3proxy.
|
|
||||||
# Paths in configuration file must be relative to /usr/local/3proxy, that is use /logs instead of
|
|
||||||
# /usr/local/3proxy/logs. nserver in chroot is required for DNS resolution. An example:
|
|
||||||
#
|
#
|
||||||
# echo nserver 8.8.8.8 >/path/to/local/config/directory/3proxy.cfg
|
# echo nserver 8.8.8.8 >/path/to/local/config/directory/3proxy.cfg
|
||||||
# echo proxy -p3129 >>/path/to/local/config/directory/3proxy.cfg
|
# echo proxy -p3129 >>/path/to/local/config/directory/3proxy.cfg
|
||||||
# docker run -p 3129:3129 -v /path/to/local/config/directory:/usr/local/3proxy/conf -name 3proxy.full 3proxy.full
|
# podman run --read-only -p 3129:3129 -v /path/to/local/config/directory:/etc/3proxy -name 3proxy.full 3proxy.full
|
||||||
#
|
|
||||||
# /path/to/local/config/directory in this example must conrain 3proxy.cfg
|
|
||||||
# if you need 3proxy to be executed without chroot with root permissions
|
|
||||||
# replace /etc/3proxy/3proxy.cfg by e.g. mounting config
|
|
||||||
# dir to /etc/3proxy ot by providing config file /etc/3proxy/3proxy.cfg
|
|
||||||
# some plugins like SSLPLugin / pamauth also conflict with chroot and must
|
|
||||||
# be started prior to chroot.
|
|
||||||
# docker run -p 3129:3129 -v /path/to/local/config/directory:/etc/3proxy -name 3proxy.full 3proxy.full
|
|
||||||
#
|
#
|
||||||
# use "log" without pathname in config to log to stdout.
|
# use "log" without pathname in config to log to stdout.
|
||||||
# plugins are located in /usr/local/3proxy/libexec (/libexec for chroot config).
|
# plugins are located in /usr/local/3proxy/libexec (/libexec for chroot config)
|
||||||
|
# symlinked as /lib and /lib64 in both root and chroot configurations, so no need
|
||||||
|
# to specify full path to plugin. SSLPlugin is supported.
|
||||||
|
#
|
||||||
|
# Since 0.9.6 image is distroless, no reason to use chroot, chroot
|
||||||
|
# configuration is supported for compatility only.
|
||||||
|
|
||||||
|
|
||||||
FROM gcc AS buildenv
|
FROM docker.io/gcc AS buildenv
|
||||||
COPY . 3proxy
|
COPY . 3proxy
|
||||||
RUN cd 3proxy &&\
|
RUN cd 3proxy &&\
|
||||||
apt update && apt install libssl-dev libpam-dev libpcre2-dev &&\
|
apt --assume-yes update && apt --assume-yes install libssl-dev libpcre2-dev &&\
|
||||||
make -f Makefile.Linux &&\
|
make -f Makefile.Linux &&\
|
||||||
strip bin/3proxy &&\
|
strip bin/3proxy &&\
|
||||||
strip bin/StringsPlugin.ld.so &&\
|
mkdir /dist &&\
|
||||||
strip bin/TrafficPlugin.ld.so &&\
|
mkdir /dist/etc &&\
|
||||||
strip bin/PCREPlugin.ld.so &&\
|
mkdir /dist/etc/3proxy &&\
|
||||||
strip bin/TransparentPlugin.ld.so &&\
|
mkdir /dist/bin &&\
|
||||||
strip bin/SSLPlugin.ld.so &&\
|
mkdir /dist/usr &&\
|
||||||
mkdir /usr/local/lib/3proxy &&\
|
mkdir /dist/usr/local &&\
|
||||||
cp "/lib/`gcc -dumpmachine`"/libdl.so.* /usr/local/lib/3proxy/
|
mkdir /dist/usr/local/3proxy &&\
|
||||||
|
mkdir /dist/usr/local/3proxy/libexec &&\
|
||||||
|
mkdir /dist/usr/local/3proxy/conf &&\
|
||||||
|
cp bin/3proxy /dist/bin &&\
|
||||||
|
cp bin/*.so /dist/usr/local/3proxy/libexec &&\
|
||||||
|
cp scripts/3proxy.cfg.inchroot /dist/etc/3proxy/3proxy.cfg
|
||||||
|
RUN cd /dist &&\
|
||||||
|
ln -s /usr/local/3proxy/libexec lib64 &&\
|
||||||
|
ln -s /usr/local/3proxy/libexec lib &&\
|
||||||
|
ln -s /usr/local/3proxy/libexec usr/lib &&\
|
||||||
|
ln -s /usr/local/3proxy/libexec usr/lib64 &&\
|
||||||
|
ln -s /usr/local/3proxy/libexec /dist/usr/local/3proxy/libexec/`gcc -dumpmachine` &&\
|
||||||
|
cp /lib64/ld-*.so.* /dist/usr/local/3proxy/libexec &&\
|
||||||
|
cp "/lib/`gcc -dumpmachine`"/libc.so.* /dist/usr/local/3proxy/libexec &&\
|
||||||
|
cp "/lib/`gcc -dumpmachine`"/libdl.so.* /dist/usr/local/3proxy/libexec &&\
|
||||||
|
cp "/lib/`gcc -dumpmachine`"/libcrypto.so.* /dist/usr/local/3proxy/libexec &&\
|
||||||
|
cp "/lib/`gcc -dumpmachine`"/libssl.so.* /dist/usr/local/3proxy/libexec &&\
|
||||||
|
cp "/lib/`gcc -dumpmachine`"/libpcre2-8.so.* /dist/usr/local/3proxy/libexec &&\
|
||||||
|
cp "/lib/`gcc -dumpmachine`"/libz.so.* /dist/usr/local/3proxy/libexec &&\
|
||||||
|
cp "/lib/`gcc -dumpmachine`"/libzstd.so.* /dist/usr/local/3proxy/libexec
|
||||||
|
RUN cd /dist/usr/local/3proxy/ &&\
|
||||||
|
ln -s libexec lib &&\
|
||||||
|
ln -s libexec lib64 &&\
|
||||||
|
mkdir usr
|
||||||
|
RUN cd /dist/usr/local/3proxy/usr &&\
|
||||||
|
ln -s ../libexec lib &&\
|
||||||
|
ln -s ../libexec lib64 &&\
|
||||||
|
strip /dist/usr/local/3proxy/libexec/*.so &&\
|
||||||
|
ls -lR /dist
|
||||||
|
|
||||||
FROM busybox:glibc
|
FROM scratch
|
||||||
COPY --from=buildenv /usr/local/lib/3proxy/libdl.so.* /lib/
|
COPY --from=buildenv /dist /
|
||||||
COPY --from=buildenv 3proxy/bin/3proxy /bin/
|
|
||||||
COPY --from=buildenv 3proxy/bin/*.ld.so /usr/local/3proxy/libexec/
|
|
||||||
RUN mkdir /usr/local/3proxy/logs &&\
|
|
||||||
mkdir /usr/local/3proxy/conf &&\
|
|
||||||
chown -R 65535:65535 /usr/local/3proxy &&\
|
|
||||||
chmod -R 550 /usr/local/3proxy &&\
|
|
||||||
chmod 750 /usr/local/3proxy/logs &&\
|
|
||||||
chmod -R 555 /usr/local/3proxy/libexec &&\
|
|
||||||
chown -R root /usr/local/3proxy/libexec &&\
|
|
||||||
mkdir /etc/3proxy/ &&\
|
|
||||||
echo chroot /usr/local/3proxy 65535 65535 >/etc/3proxy/3proxy.cfg &&\
|
|
||||||
echo include /conf/3proxy.cfg >>/etc/3proxy/3proxy.cfg &&\
|
|
||||||
chmod 440 /etc/3proxy/3proxy.cfg
|
|
||||||
CMD ["/bin/3proxy", "/etc/3proxy/3proxy.cfg"]
|
CMD ["/bin/3proxy", "/etc/3proxy/3proxy.cfg"]
|
||||||
|
|||||||
@ -1,41 +1,38 @@
|
|||||||
# dockerfile for "interactive" minimal 3proxy execution, no configuration mounting is required, configuration
|
# dockerfile for "interactive" minimal 3proxy execution, no configuration mounting is required, configuration
|
||||||
# is accepted from stdin. Use "end" command to indicate the end of configuration. Use "log" for stdout logging.
|
# is accepted from stdin. Use "end" command to indicate the end of configuration. Use "log" for stdout logging.
|
||||||
#
|
#
|
||||||
# This is busybox based docker with only 3proxy static executable and empty non-writable "run" directory.
|
# Examples are for podman. For docker change 'podman' to 'docker'.
|
||||||
#
|
#
|
||||||
# "plugin" is not supported
|
# This is busybox based docker with only 3proxy static executable.
|
||||||
|
#
|
||||||
|
# Limitations for minimal version:
|
||||||
|
# no support for plugins, IPv6, RADIUS, system resolver.
|
||||||
|
# 'nserver' or 'fakeresolve' are mandatory in configuration.
|
||||||
#
|
#
|
||||||
# Build:
|
# Build:
|
||||||
#
|
#
|
||||||
# docker build -f Dockerfile.minimal -t 3proxy.minimal .
|
# podman build -f Dockerfile.minimal -t 3proxy.minimal .
|
||||||
#
|
#
|
||||||
# Run example:
|
# Run example:
|
||||||
#
|
#
|
||||||
# docker run -i -p 3129:3129 --name 3proxy 3proxy.minimal
|
# podman run --read-only -i -p 3129:3129 --name 3proxy 3proxy.minimal
|
||||||
#or
|
#or
|
||||||
# docker start -i 3proxy
|
# podman start -ai 3proxy
|
||||||
#<chroot run 65535 65535
|
|
||||||
#<nserver 8.8.8.8
|
#<nserver 8.8.8.8
|
||||||
#<nscache 65535
|
#<nscache 65535
|
||||||
#<log
|
#<log
|
||||||
#<proxy -p3129
|
#<proxy -p3129
|
||||||
#<end
|
#<end
|
||||||
#
|
#
|
||||||
# use "chroot run 65536 65536" in config for safe chroot environment. nserver is required for DNS resolutions in chroot.
|
|
||||||
|
|
||||||
|
FROM docker.io/gcc AS buildenv
|
||||||
FROM gcc AS buildenv
|
|
||||||
COPY . 3proxy
|
COPY . 3proxy
|
||||||
RUN cd 3proxy &&\
|
RUN cd 3proxy &&\
|
||||||
echo "">>Makefile.Linux &&\
|
export "LDFLAGS=-static" &&\
|
||||||
echo LDFLAGS = -fPIC -O2 -fno-strict-aliasing -pthread >>Makefile.Linux &&\
|
export "CFLAGS=-DNOPLUGINS -DNORADIUS -DNOIPV6 -DNOODBC -DNOCRYPT -DNOSTDRESOLVE" &&\
|
||||||
echo PLUGINS = >>Makefile.Linux &&\
|
make -f Makefile.Linux PLUGINS= LIBS= &&\
|
||||||
echo LIBS = >>Makefile.Linux &&\
|
|
||||||
echo CFLAGS = -g -fPIC -O2 -fno-strict-aliasing -c -pthread -DWITHSPLICE -D_GNU_SOURCE -DGETHOSTBYNAME_R -D_THREAD_SAFE -D_REENTRANT -DNOODBC -DWITH_STD_MALLOC -DFD_SETSIZE=4096 -DWITH_POLL -DWITH_NETFILTER -DNOPLUGINS >>Makefile.Linux &&\
|
|
||||||
make -f Makefile.Linux &&\
|
|
||||||
strip bin/3proxy
|
strip bin/3proxy
|
||||||
|
|
||||||
FROM busybox:glibc
|
FROM scratch
|
||||||
COPY --from=buildenv 3proxy/bin/3proxy /bin/3proxy
|
COPY --from=buildenv 3proxy/bin/3proxy /bin/3proxy
|
||||||
RUN mkdir /run && chmod 555 /run
|
|
||||||
CMD ["/bin/3proxy"]
|
CMD ["/bin/3proxy"]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user