Initiate your work by obtaining the most recent SCDK Docker image:
docker pull ghcr.io/uuosio/scdk:latest
To activate the eosdebugger
within a Docker container, execute the command below:
docker run -it --rm -p 9090:9090 -p 9092:9092 -p 9093:9093 -t ghcr.io/uuosio/scdk
docker run --entrypoint ipyeos -it --rm -v $(pwd):/develop -w /develop -t ghcr.io/uuosio/scdk ./test.py
To activate a Bash shell within a Docker container and map the current directory to the /develop
directory, utilize the command below:
docker run --entrypoint bash -it --rm -v "$(pwd)":/develop -t ghcr.io/uuosio/scdk
By employing the -v
flag, you can ensure that the current directory on your host machine is mounted to the /develop
directory within the Docker container.