Skip to content

Commit

Permalink
fix(quickstart.sh): Avoid interactive mode when building docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
iljabvh committed Mar 28, 2024
1 parent 553a1a2 commit dfab6f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ else
fi

currentDir=$(pwd)
docker run -dti \
docker run -d \
--volume ${currentDir}:/workspace \
--name soroban-preview \
-p 8001:8000 \
Expand All @@ -53,7 +53,7 @@ docker run -dti \

# Run the stellar quickstart image

docker run --rm -ti \
docker run --rm \
--name stellar \
--pull always \
--network soroban-network \
Expand Down

0 comments on commit dfab6f2

Please sign in to comment.