The Docker image will be automatically built by Docker Hub when releases are created.
This is an example for Ubuntu.
sudo apt install docker.io -y
sudo curl -L "https://github.com/docker/compose/releases/download/1.28.6/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
sudo gpasswd -a $(whoami) docker
sudo chgrp docker /var/run/docker.sock
sudo systemctl enable docker
sudo systemctl restart docker
docker run -v ~/.eurx:/root/.eurx lcnem/eurx eurxd init [moniker] --chain-id [chain-id]
mkdir eurx
cd eurx
curl -L https://raw.githubusercontent.com/lcnem/eurx/main/launch/[chain-id]/genesis.json -o ~/.eurx/config/genesis.json
curl -O https://raw.githubusercontent.com/lcnem/eurx/main/docker-compose.yml
docker-compose up -d
This is an example for Ubuntu.
sudo apt update
sudo apt install build-essential
cd ~
wget https://dl.google.com/go/go1.16.4.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.16.4.linux-amd64.tar.gz
echo export PATH='$PATH:/usr/local/go/bin:$HOME/go/bin' >> ~/.bashrc
source ~/.bashrc
git clone https://github.com/lcnem/eurx.git
cd eurx
make install
eurxd init [moniker] --chain-id [chain-id]
cp launch/[chain-id]/genesis.json ~/.eurx/config/genesis.json
vi /etc/systemd/system/eurxd.service
[Unit]
Description=EURX Node
After=network-online.target
[Service]
User=root
ExecStart=/root/go/bin/eurxd start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
systemctl enable eurxd
Forked from Kava. Thanks Kava Team.
Copyright © LCNEM, Inc. All rights reserved.
Licensed under the Apache v2 License.