socks-proxy / Dockerfile
bla's picture
Rename dockerfile to Dockerfile
6e22a0e verified
raw
history blame
287 Bytes
# Use the dperson/socks-proxy image as the base
FROM dperson/socks-proxy:latest
# Set environment variables (optional)
ENV SOCKS_PORT=1080
# Expose the SOCKS proxy port
EXPOSE ${SOCKS_PORT}
# Start the SOCKS proxy without authentication
ENTRYPOINT ["/usr/local/bin/sockd"]
CMD ["-N"]