diff --git a/scripts/cosm/start.sh b/scripts/cosm/start.sh index 7e0d0d08f3..f56b90e8f2 100755 --- a/scripts/cosm/start.sh +++ b/scripts/cosm/start.sh @@ -12,15 +12,14 @@ echo "Using temporary dir $TMP_DIR" WASMD_LOGFILE="$TMP_DIR/wasmd.log" REST_SERVER_LOGFILE="$TMP_DIR/rest-server.log" -HOME_DIR="/root" - # This starts up wasmd docker volume rm -f wasmd_data docker run --rm \ --name "$CONTAINER_NAME" \ + -p 1317:1317 \ -p 26657:26657 \ -p 26656:26656 \ - --mount type=bind,source=$(pwd)/template,target=/template \ + --mount type=bind,source="$(pwd)/template",target=/template \ --mount type=volume,source=wasmd_data,target=/root \ "$CONTAINER_NAME:$VERSION" \ ./run_wasmd.sh /template \ @@ -32,7 +31,7 @@ sleep 10 docker exec "$CONTAINER_NAME" \ wasmcli rest-server \ - --node tcp://localhost:46657 \ + --node tcp://localhost:26657 \ --trust-node \ --laddr tcp://0.0.0.0:1317 \ > "$REST_SERVER_LOGFILE" & diff --git a/scripts/cosm/stop.sh b/scripts/cosm/stop.sh index fba38e82a0..9121499332 100755 --- a/scripts/cosm/stop.sh +++ b/scripts/cosm/stop.sh @@ -2,7 +2,7 @@ set -o errexit -o nounset -o pipefail command -v shellcheck > /dev/null && shellcheck "$0" -GAIAD_CONTAINER_NAME="gaiad" +CONTAINER_NAME="wasmd" echo "Killing Cosmos container..." -docker container kill "$GAIAD_CONTAINER_NAME" +docker container kill "$CONTAINER_NAME"