storj/all-in-one.md
2018-12-04 16:10:23 -05:00

37 lines
1.4 KiB
Markdown

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:
1. `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`
2. `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:
- https://hub.docker.com/r/storjlabs/gateway/tags/
- https://hub.docker.com/r/storjlabs/storagenode/tags/
- https://hub.docker.com/r/storjlabs/satellite/tags/
5. `docker-compose up satellite storagenode gateway`
Bring up the gateway, satellite, and 1 storagenode
6. 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
```