PHLAK / docker-soxy

Docker image for SOCKS proxy client.

Home Page:https://hub.docker.com/r/phlak/soxy/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-soxy

Join the Community Become a Sponsor One-time Donation
Docker Image Version Docker Pulls License Docker Cloud Build Status

Docker image for SOCKS proxy client (inspired by Soxy).


Running the Container

First generate an SSH key pair and store it in a named data volume:

docker run --rm -v soxy-key:/vol/key --entrypoint keygen phlak/soxy docker-soxy

This will generate a new SSH key pair and echo back the public key. You must then manually add this key to your server's known_hosts file. Once complete you can run the SOCKS proxy client with:

docker run -d -p 1080:1080 -v soxy-key:/vol/key --name soxy-client phlak/soxy user@hostname [-p 1234]

NOTE: Replace user@hostname [-p 1234] with your server's user and hostname. You may also set the port number with the -p flag if your server isn't running on the default port (22).

Once the Soxy client is up and running you can connect to it via localhost:1080.

Optional 'docker run' arguments

--restart always - Always restart the container regardless of the exit status. See the Docker restart policies for additional details.

Troubleshooting

For general help and support join our GitHub Discussions or reach out on Twitter.

Please report bugs to the GitHub Issue Tracker.

Copyright

This project is licensed under the MIT License.

About

Docker image for SOCKS proxy client.

https://hub.docker.com/r/phlak/soxy/

License:MIT License


Languages

Language:Dockerfile 74.2%Language:Makefile 15.4%Language:Shell 10.4%