mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 21:49:15 +00:00
26 lines
904 B
Bash
Executable File
26 lines
904 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit -o nounset -o pipefail
|
|
command -v shellcheck > /dev/null && shellcheck "$0"
|
|
|
|
SCRIPT_DIR="$(realpath "$(dirname "$0")")"
|
|
# shellcheck source=./env
|
|
# shellcheck disable=SC1091
|
|
source "$SCRIPT_DIR"/env
|
|
|
|
rm -rf "$SCRIPT_DIR/template"
|
|
mkdir "$SCRIPT_DIR/template"
|
|
|
|
# The usage of the accounts below is documented in README.md of this directory
|
|
docker run --rm \
|
|
-e PASSWORD=my-secret-password \
|
|
--mount type=bind,source="$SCRIPT_DIR/template",target=/root \
|
|
"$REPOSITORY:$VERSION" \
|
|
./setup.sh \
|
|
cosmos1pkptre7fdkl6gfrzlesjjvhxhlc3r4gmmk8rs6 cosmos1cjsxept9rkggzxztslae9ndgpdyt2408lk850u
|
|
|
|
# The ./template folder is created by the docker daemon's user (root on Linux, current user
|
|
# when using Docker Desktop on macOS), let's make it ours if needed
|
|
if [ ! -x "$SCRIPT_DIR/template/.wasmd/config/gentx" ]; then
|
|
sudo chown -R "$(id -u):$(id -g)" "$SCRIPT_DIR/template"
|
|
fi
|