Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 568 Bytes

File metadata and controls

20 lines (14 loc) · 568 Bytes

Docker configuration for testing and development of Opaque.

To run the Opaque tests, use:

docker run -it -m 4g -w /home/opaque/opaque ankurdave/opaque build/sbt test

To launch an interactive console with Opaque, use:

docker run -it -m 4g -w /home/opaque/opaque ankurdave/opaque build/sbt console

For development, mount your local Opaque source directory and launch continuously-running tests against it:

docker run -it -m 4g -v $OPAQUE_HOME:/home/opaque/opaque -w /home/opaque/opaque \
    ankurdave/opaque build/sbt ~test