mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-26 09:05:13 +01:00
22 lines
447 B
Markdown
22 lines
447 B
Markdown
# Tor container in Cyphernode
|
|
|
|
## Pull our Cyphernode image
|
|
|
|
```shell
|
|
docker pull cyphernode/tor:latest
|
|
```
|
|
|
|
## Build yourself the image
|
|
|
|
```shell
|
|
docker build -t cyphernode/tor:latest .
|
|
```
|
|
|
|
## Run image
|
|
|
|
If you are using it independantly from the Docker stack (docker-compose.yml), you can run it like that:
|
|
|
|
```shell
|
|
docker run --rm -d --network cyphernodenet cyphernode/tor:latest `id -u cyphernode`:`id -g cyphernode` ./tor -f /tor/torrc
|
|
```
|