blob: 4002dc7ff199db61a40168574114c2face04708c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
Create folder under /tmp/volume/host_<host name> for each host (example
host_sample where sample is the name of the tpm capable host).
This folder will be mounted into the container as shared volume for now.
Expects the input SRK pulic key "out_parent_public" for each host under
the corresponding host directory and file "passphrase" under /tmp/volume/
containing the passphrase to encrypt the key.
example
/tmp/volume/host_sample/out_parent_public
/tmp/volume/passphrase
Build the container using
docker build --no-cache -t dist-center -f distcenterdockerfile .
Run it mounting the volume
docker run -v /tmp/volume:/volume dist-center
This will output the following files in /tmp/volume/host_<host name>
ca.cert
dupEncKey
dupPriv
dupPub
dupSymseed
Encrypted private key and certificate under /tmp/volume
ca.cert
privkey.pem.gpg
|