chisel

GitHub

A fast TCP/UDP tunnel over HTTP

16,368 stars Go #golang#http#tcp#tunnel
1. Pull Image docker pull jpillora/chisel:latest
2. 1-Click Launch Command docker run -d --name chisel --restart always jpillora/chisel:latest
.github/Dockerfile
# goreleaser builds the binary and provides it in the build context
FROM alpine:3 AS certs
RUN apk add --no-cache ca-certificates

FROM scratch
LABEL maintainer="[email protected]"
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
WORKDIR /app
COPY chisel /app/bin
ENTRYPOINT ["/app/bin"]