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
6 lines
207 B
Bash
Executable File
6 lines
207 B
Bash
Executable File
#/bin/bash
|
|
|
|
# Run container interactive with X11
|
|
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
|