Skip to content

Sindri-Labs/docker-zkp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sindri Docker Images

Development

Building Images

Build all images:

docker compose build

Running Command Containers

This will execute the command container with a bind mount of images/circom/ at /sindri/ (which is also the current working directory) in the container:

# Replace "circom" with the appropriate command.
docker compose run circom

# With extr arguments to pass to the command:
docker compose run circom [arg1] [arg2] ...

Running an Interactive Shell in a Command Container

It can be useful when debugging to drop into an interactive shell. Because the command containers do not run as Docker Compose services, you need to use docker compose run with the --entrypoint argument:

# Replace "circom" with the appropriate command.
docker compose run --entrypoint /bin/bash circom

Releases

No releases published

Packages

No packages published