> For the complete documentation index, see [llms.txt](https://taraxa.gitbook.io/taraxa-network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://taraxa.gitbook.io/taraxa-network/node-setup/testnet_node_setup/github_blocked.md).

# GitHub is blocked

GitHub is blocked in some countries. To bypass this we have two options:

## 1. VPN Extension

If you have VPN extension in your web browser activate your VPN extension and go to [this link](https://github.com/Taraxa-project/taraxa-ops).

![Download Taraxa Scripts](/files/-MYp9ZeO863mZeqbgcFi)

Click on "Download ZIP" under the "Code" menu and the download should start.

After the download is complete unzip the file and move the extracted directory to the following location based on your operating system.

For Windows: `Desktop`

For Mac: `Desktop`

For Linux: `Your home directory (~)`

You should now have a directory called `taraxa-ops-master` in the previous locations that contains another directory named `taraxa_compose`. If your OS named the parent directory differently rename it to `taraxa-ops-master`.

Now you can go back to the documentation for your operating system and run the same commands.

## 2. Without Docker Compose

If you still can't access GitHub you can run the Docker image manually without Docker Compose.

### Run node with Docker

The first steps is to create a taraxa directory somewhere on your computer.

For Windows:

```bash
cd .\Desktop\
mkdir taraxa
cd taraxa
mkdir data
mkdir conf
```

For Mac:

```bash
cd ~/Desktop
mkdir -p taraxa/data
mkdir -p taraxa/conf
cd taraxa
```

For Linux:

```bash
cd ~/
mkdir -p taraxa/data
mkdir -p taraxa/conf
cd taraxa
```

Now to configure and start the node we can run the following commands:

```
docker run -d --name taraxa_compose_node_1 -it -p 10002:10002 -p 10002:10002/udp -p 7777:7777 -p 8777:8777 -v $(pwd):/opt/taraxa_data taraxa/taraxa-node:latest taraxad --network-id 2 --wallet /opt/taraxa_data/conf/wallet.json --config /opt/taraxa_data/conf/testnet.json --data-dir /opt/taraxa_data/data --overwrite-config

docker logs -f taraxa_compose_node_1
```

Now the node should start.

*NOTE: If Linux is complaining about permissions you can prefix these commands with `sudo`*

### Update node software

To update the node we can run the following:

```bash
docker rm -f taraxa_compose_node_1
```

OPTIONAL: If there was a protocol upgrade we also have to remove the data in order to re-sync.

For Mac and Linux:

```bash
rm -rf data
```

For Windows:

```bash
deltree /Y data
```

Continued:

```
docker pull taraxa/taraxa-node:latest
docker run -d --name taraxa_compose_node_1 -it -p 10002:10002 -p 10002:10002/udp -p 7777:7777 -p 8777:8777 -v $(pwd):/opt/taraxa_data taraxa/taraxa-node:latest taraxad --conf_taraxa /opt/taraxa_data/conf/testnet.json
```
