-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTaraxa
More file actions
24 lines (19 loc) · 734 Bytes
/
Taraxa
File metadata and controls
24 lines (19 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
sudo apt update
sudo apt install wget curl unzip -y
wget -O get-docker.sh https://get.docker.com
sudo sh get-docker.sh
sudo apt install -y docker-compose
rm -f get-docker.sh
cd ~/
wget https://github.com/Taraxa-project/taraxa-ops/archive/refs/heads/master.zip && unzip master.zip && rm -f master.zip
cd ~/taraxa-ops-master/taraxa_compose
sudo docker-compose up -d
Logs:
sudo docker-compose logs -f
Update:
cd ~/taraxa-ops-master/taraxa_compose
wget -O docker-compose-new.yml https://raw.githubusercontent.com/Taraxa-project/taraxa-ops/master/taraxa_compose/docker-compose.yml && mv docker-compose-new.yml docker-compose.yml
sudo docker-compose down
sudo docker-compose pull
sudo docker-compose up -d
sudo docker-compose logs -f