mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
fb73a4eef6
Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: Alexander Popiak <alexander.popiak@parity.io>
11 lines
255 B
Bash
11 lines
255 B
Bash
#!/usr/bin/env bash
|
|
# This script is meant to be run on Unix/Linux based systems
|
|
set -e
|
|
|
|
echo "*** Start Substrate node template ***"
|
|
|
|
cd $(dirname ${BASH_SOURCE[0]})/..
|
|
|
|
docker-compose down --remove-orphans
|
|
docker-compose run --rm --service-ports dev $@
|