Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 593 Bytes

run-docker.md

File metadata and controls

24 lines (17 loc) · 593 Bytes

Run in Docker

First, install Docker and Docker Compose.

Then run the following command to start a single node development chain.

A few useful ones are as follow:

  • macos:

    docker build -f ./pos_build.Dockerfile -t wetee/wetee-node:dev .
    
    # Run node with docker
    docker run -p 9944:9944 wetee/wetee-node:dev
  • linux :

    docker build -f ./x86_build.Dockerfile -t wetee/wetee-node:dev .
    
    # Run node with docker
    docker run -p 9944:9944 wetee/wetee-node:dev