-
Notifications
You must be signed in to change notification settings - Fork 406
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can we run this behind TOR? #77
Comments
You can edit |
I want to route bitcoin only through tor, using peterdavehello/tor-socks-proxy container as tor proxy. I first run tor container
Then run bitcoin with:
In my bitcoin.conf, I use tor settings.
Should bind also be ip from tor-socks-proxy? |
I have it working! tor container is running like:
Then connect bitcoin-node with tor-socks-proxy network container
In
|
Thanks @realSConway For those who prefer version: "3"
services:
bitcoind:
image: kylemanna/bitcoind:latest
container_name: bitcoind
restart: always
volumes:
- /media/bitcoin:/bitcoin/.bitcoin
network_mode: service:tor
tor:
image: peterdavehello/tor-socks-proxy:latest
container_name: tor-socks-proxy
ports:
- "8118:8118"
- "127.0.0.1:8332:8332"
- "127.0.0.1:9150:9150/tcp"
|
Thanks @MarcelRobitaille and @realSConway but you can't publish a hidden service this way. I'll try to make a pullrequest by running tor within the same container. |
I have setup using docker & everything working.
How can I run this behind a TOR?
I have also setup EZNODE docker container which runs a TOR, BTC RPC Explorer
It would be nice to connect to the TOR created by that.
Any advice on this?
The text was updated successfully, but these errors were encountered: