Skip to content

Update Node Pipe Network Testnet v0.3.1 with Docker

System Specs

HardwareRequirement
CPU4 Cores
RAM16 GB
Storage100 GB
Internet1 Gbps

Last Update: 01-06-2025
Note: Bagi yang mendapatkan email yang bisa running

Update Node Pipe Network Testnet V0.3.1 di Docker

  1. Commit ulang docker popnode dengan nama baru
docker commit popnode popnode031

  1. Hapus container yang lama
docker rm -f popnode

  1. Buat Container docker baru
docker run -d --name popnode031 -p 80:80 -p 443:443 -it --entrypoint bash popnode031

  1. Masuk kedalam container popnode031
docker exec -it popnode031 bash

  1. update dan install wget, tmux
apt update && apt install tmux wget -y

  1. Download file binary node terbaru
  • Hapus binary yang lama
rm pop
  • Download file
wget https://download.pipe.network/static/pop-v0.3.1-linux-x64.tar.gz
  • unzip file
tar -xvzf pop-v0.3.1-linux-x64.tar.gz
  • Beri izin file
chmod 755 /opt/popcache/pop

  1. Buat baru session tmux
tmux new -s popnode

  1. Run node
./pop

  1. Keluar dari tmux (jika sudah running)
ctrl b, lepas semua, lalu tekan d

  1. Keluar dari container
exit

  1. Cek status node
  • Check the health endpoint
curl http://localhost/health | jq
curl -k https://localhost/health | jq
  • Check the state endpoint
curl -k https://localhost/state | jq
  • Check the metrics endpoint
curl -k https://localhost/metrics | jq
  • Cek dari browser
https://ip-vps-anda/state
https://ip-vps-anda/health

DONE

Referensi

docs.pipe.network/nodes/testnet