Skip to content

0mni/docker-soxy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 74.2%
  • Makefile 15.4%
  • Shell 10.4%