1.4 KiB
Steps to setup a local network
Run make all-in-one
from the repo root. This will build new images and stand
them up locally. If you want to test a different version, run
VERSION=latest make all-in-one
. If you want to stand them up by hand, run the
following:
-
make images
If you don't want to build the images locally, you can skip this step. Otherwise, you'll need the version number presented here if you don't use latest in the next step:Built version: c6cd912-all-in-one-go1.10
-
export VERSION=latest
Export the version of the network you want to run. Latest should be ok, but if you're testing something else, set the version here. ex:c6cd912-all-in-one-go1.10
Usable images should be pushed to the Docker Hub: -
docker-compose up satellite storagenode gateway
Bring up the gateway, satellite, and 1 storagenode -
Visit http://localhost:7777 or use the aws tool with
--endpoint=http://localhost:7777
Troubleshooting
Soemtimes, the overlay cache gets confused and has old nodes in it. This will need to be cleared. It's easiest to just remove the redis container completely.
docker-compose stop redis
docker-compose rm redis