Skip to content

Instantly share code, notes, and snippets.

@rezamt
Last active May 1, 2019 14:02
Show Gist options
  • Save rezamt/80c40a1968fc673c8bd88512f6013cd8 to your computer and use it in GitHub Desktop.
Save rezamt/80c40a1968fc673c8bd88512f6013cd8 to your computer and use it in GitHub Desktop.
Running Cordite
# https://hub.docker.com/r/cordite/cordite/
docker run -it \
--memory=2048m \
--cpus=2 \
-e MY_LEGAL_NAME="O=Cordite-example,L=Berlin,C=DE" \
-e MY_PUBLIC_ADDRESS="cordite.example.com" \
-e MY_EMAIL_ADDRESS="noreply@cordite.foundation" \
-e NETWORK_MAP_URL="https://localhost" \
-v $(pwd):/opt/corda/certificates \
-v $(pwd):/opt/corda/persistence \
-p 10200:10200 \
-p 8080:8080 \
cordite/cordite:latest
# https://hub.docker.com/r/cordite/network-map
docker run -it \
--memory=2048m \
--cpus=2 \
-e NMS_ROOT_CA_NAME="CN=Demo, OU=Cordite Foundation Network, O=Cordite Foundation, L=London, ST=London, C=GB" \
-p 8080:8080 \
cordite/network-map:latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment