Docker - for Mac M1
How to build the Docker image
Edit the Dockerfile
and perform the following modification
Replace line #1
FROM ghcr.io/ledgerhq/speculos-builder:latest AS builder
with
FROM ghcr.io/ledgerhq/speculos-builder-aarch64:latest AS builder
Then build the Docker container image with the following command:
docker build ./ -t speculos
If the build is successful, you should have a docker image named speculos:
docker image ls
REPOSITORY TAG IMAGE ID CREATED SIZE
speculos latest 634c66a13457 15 minutes ago 593MB
How to use the Docker image
Run the image with a few arguments from the root of the speculos project:
docker run --rm -it -v $(pwd)/apps:/speculos/apps --publish 41000:41000 --publish 5001:5001 speculos --display headless --vnc-port 41000 --api-port 5001 apps/btc.elf
The app folder (here
$(pwd)/apps/
) is mounted thanks to-v
The VNC server is available from the host thanks to
--publish
The image can obviously run an interactive shell with --entrypoint /bin/bash
.
Arguments
All the arguments which are supported by speculos.py
can be passed on the Docker command-line. Don’t forget to publish container’s ports when required using -p
:
docker run --rm -it -v "$(pwd)"/apps:/speculos/apps \
-p 1234:1234 -p 5000:5000 -p 40000:40000 -p 41000:41000 speculos \
--model nanos ./apps/btc.elf --sdk 2.0 --seed "secret" --display headless --apdu-port 40000 --vnc-port 41000
Debug
docker run --rm -it -v "$(pwd)"/apps:/speculos/apps -p 1234:1234 -p 5000:5000 -p 40000:40000 -p 41000:41000 --entrypoint /bin/bash speculos
docker-compose setup
docker-compose up [-d]
Default configuration is nanos / 2.0 / btc.elf / seed “secret”
Edit docker-compose.yml
to configure port forwarding and environment variables that fit your needs.