socks-proxy / dockerfile
bla's picture
Create dockerfile
0a0921d 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"]