MeyCoin Server

Using Docker

The easiest way to run a local MeyCoin server is using Docker. An up-to-date Docker image is always available on Docker Hub.

$ docker run -p 7845:7845 meycoin/node

You can pass arguments to the server like this:

$ docker run -p 7845:7845 meycoin/node meycoinsvr --testmode

To supply your own config file, use:

$ docker run -p 7845:7845 -v $(pwd)/config.toml:/meycoin/config.toml meycoin/node meycoinsvr --config /meycoin/config.toml

Building from source

Prerequisites

Linux

1.Install dependencies

sudo apt update
sudo apt upgrade

sudo apt install build-essential libssl-dev m4 -y

2.Install CMake

3.Install Go

4.Install MeyCoin Server

MacOS

1.If you haven’t already, install homebrew.

2.Install dependencies

3.Set environment

4.Install MeyCoin Server

Run Server

Last updated