8 lines
286 B
Bash
8 lines
286 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -ex
|
||
|
storj-up init nomad --name=core --ip=$IP minimal,gc
|
||
|
storj-up image satellite-api,storagenode,gc $IMAGE
|
||
|
storj-up persist storagenode,satellite-api,gc
|
||
|
storj-up env set satellite-api STORJ_DATABASE_OPTIONS_MIGRATION_UNSAFE=snapshot,testdata
|
||
|
nomad run storj.hcl
|