Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zinovyev/dante-docker
Docker image for Dante SOCKS server
https://github.com/zinovyev/dante-docker
Last synced: 1 day ago
JSON representation
Docker image for Dante SOCKS server
- Host: GitHub
- URL: https://github.com/zinovyev/dante-docker
- Owner: zinovyev
- License: mit
- Created: 2018-05-02T07:01:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-15T11:57:13.000Z (almost 6 years ago)
- Last Synced: 2024-11-08T21:12:34.408Z (about 2 months ago)
- Language: Dockerfile
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker image for dante proxy server
### Configure
You can change the `username`, `password` and `port` options of this image by
editing the part of this `Dockerfile` where the environment variables are set:* `ENV DANTE_USERNAME username`
* `ENV DANTE_PASSWORD password`
* `ENV DANTE_PORT 1080`
## Build
```bash
git clone [email protected]:zinovyev/dante-docker.git
cd dante-docker
docker build -t dante:test .```
## Run
Locally:
```bash
docker run dante:test
```
On your remote server use your remote IP and the port specified in the `Dockerfile`:
```bash
docker run -p :: dante:test
```
## Test
Figure out the IP of your running container with help of `inspect` command:
```bash
docker inspect dante-test | grep IPAddress
```
If the IP is `172.17.0.2` (remembers to replace `username`, `password` and `1080` with your own values):
```bash
curl -v -x socks5://username:[email protected]:1080 https://www.zinovyev.net
```