Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fguisso/tocker
Tor proxy for your containers
https://github.com/fguisso/tocker
hacktoberfest
Last synced: 8 days ago
JSON representation
Tor proxy for your containers
- Host: GitHub
- URL: https://github.com/fguisso/tocker
- Owner: fguisso
- Created: 2021-06-22T14:25:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-22T14:25:41.000Z (over 3 years ago)
- Last Synced: 2025-01-03T19:41:11.959Z (17 days ago)
- Topics: hacktoberfest
- Language: Dockerfile
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tocker
One Tor container to rule then all.
# Get started
- build the container `docker build --tag tocker .`
- add alias to your zshrc or another profile.
- `tocker-net` create the containers network
- `tocker-start` running Tor cointainer and attach
- `tocker ` runs differents imagens proxy by Tor automagicallye.g. `tocker curl` runs curl image througt Tor
- `tocker-service` running Tor container in background
- `tocker-log` attach to Tor container logs
- `tocker-down`# Alias
```
alias tocker-start='docker run --rm --name tor --net=onion tocker'
alias tocker-service='docker run -d --rm --name tor --net=onion tocker'
alias tocker-net='docker network create onion'
alias tocker-log='docker logs -f tor'tocker-down () {
docker stop tor
docker network rm onion
}tocker () {
docker run --rm -it --env HTTP_PROXY="tor:9080" --env HTTPS_PROXY="tor:9080" --net=onion $*
}
```