Fix run.sh default image tag

build.sh tags the image as `dogecoin`, but run.sh defaulted to
`dogecoin-qt:latest`, which this project's build.sh never produces.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_018QuKZRefXR3hVaUiXgeu6i
This commit is contained in:
2026-07-27 23:46:05 +02:00
co-authored by Claude Sonnet 5
parent 896c8bfdc5
commit bbe09c245a
+1 -1
View File
@@ -1,5 +1,5 @@
#/bin/bash
# Run container interactive with X11
IMAGE=${1:-dogecoin-qt:latest}
IMAGE=${1:-dogecoin:latest}
docker container run --rm --net bridge -e DISPLAY=$DISPLAY -v /home/jens/.dogecoin:/home/doge/.dogecoin --user doge $2 -it $IMAGE