Block a user
vpn-proxy/sing-proxy (latest)
Published 2026-03-01 02:45:09 +03:00 by dokril
Installation
docker pull git.dokops.ru/dokril/vpn-proxy/sing-proxy:latestsha256:afba08535e923773ee2dbe6cbe8ca1914c41f68221b4bc7810dbf7519439a11b
Images
| Digest | OS / Arch | Size |
|---|---|---|
| d9d0c14459 | linux/amd64 | 54 MiB |
Image Layers ( linux/amd64)
| ADD alpine-minirootfs-3.20.9-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| ARG SINGBOX_VER=1.12.13 |
| RUN |1 SINGBOX_VER=1.12.13 /bin/sh -c apk add --no-cache curl ca-certificates tar jq bash coreutils netcat-openbsd python3 dos2unix && update-ca-certificates # buildkit |
| RUN |1 SINGBOX_VER=1.12.13 /bin/sh -c ARCH=$(uname -m) && if [ "$ARCH" = "x86_64" ]; then SB_ARCH="amd64"; elif [ "$ARCH" = "aarch64" ]; then SB_ARCH="arm64"; else SB_ARCH="amd64"; fi && curl -L -o /tmp/sb.tar.gz https://github.com/SagerNet/sing-box/releases/download/v${SINGBOX_VER}/sing-box-${SINGBOX_VER}-linux-${SB_ARCH}.tar.gz && tar -xf /tmp/sb.tar.gz -C /tmp && mv /tmp/sing-box-${SINGBOX_VER}-linux-${SB_ARCH}/sing-box /usr/local/bin/sing-box && chmod +x /usr/local/bin/sing-box && adduser -D -u 1000 suser # buildkit |
| COPY --chown=suser:suser docker/entrypoint.sh /app/ # buildkit |
| COPY --chown=suser:suser web/ /app/web/ # buildkit |
| RUN |1 SINGBOX_VER=1.12.13 /bin/sh -c dos2unix /app/*.sh && chmod +x /app/entrypoint.sh # buildkit |
| EXPOSE [3456/tcp 8080/tcp 9090/tcp] |
| ENTRYPOINT ["/app/entrypoint.sh"] |