diff options
author | 2018-07-13 16:26:16 -0700 | |
---|---|---|
committer | 2018-07-16 16:19:23 -0700 | |
commit | fd2e9971b51bee7a2f7d1c5890dfd147da02d7f4 (patch) | |
tree | 0c4f802699cd246ce32de086ee43da81d18efb1b /bin/distcenter/README.md | |
parent | deb3b369b80f7825a0d7d7ac15b4a1407903a344 (diff) |
Key distribution center container
This container generates the ca key and
certificate and encrypts it using SRK public
key and stores the generated files on host
folder shared with this container. The public
key is built into the image for sample
known target host.
Change-Id: Ibcfdd10bca86a3e785a7ba6221e22fb78d8b706f
Signed-off-by: Manjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>
Issue-ID: AAF-376
Diffstat (limited to 'bin/distcenter/README.md')
-rw-r--r-- | bin/distcenter/README.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bin/distcenter/README.md b/bin/distcenter/README.md new file mode 100644 index 0000000..973cbf9 --- /dev/null +++ b/bin/distcenter/README.md @@ -0,0 +1,17 @@ +Create folder under /tmp/volume/host_sample on host. This will be mounted into the container as shared volume for now. + +Build the container using + + docker build --no-cache -t dist-center . + +Run it mounting the volume + + docker run -v /tmp/volume:/volume dist-center + +This will output the following files in /tmp/volume/host_sample + + ca.cert + dupEncKey + dupPriv + dupPub + dupSymseed |