tor-browser/README.md

22 lines
618 B
Markdown
Raw Normal View History

2016-02-27 17:56:39 +00:00
# tor-browser
This repo defines the `hkjn/tor-browser` Docker image.
2016-03-02 04:42:21 +00:00
You can run tor-browser in a container with a command like:
```
docker run -it --rm --name tor-browser \
-v /tmp/.X11-unix:/tmp/.X11-unix:ro \
-e DISPLAY=unix$DISPLAY \
hkjn/tor-browser
```
If you want to specify a custom `torrc` file, that can be done with:
```
docker run -it --rm --name tor-browser \
2017-01-27 05:44:01 +00:00
-v /host/dir/containing/torrc:/conf:ro \
-e TORRC_PATH=/conf/torrc \
-v /tmp/.X11-unix:/tmp/.X11-unix:ro \
-e DISPLAY=unix$DISPLAY \
hkjn/tor-browser
```