aboutsummaryrefslogtreecommitdiffstats
path: root/bin/caservicecontainer/README
blob: 930d51000970e0e8bf7c21af44f287f6bfb2a58e (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 a directory /tmp/volume (mkdir -p /tmp/volume) on host.
### This is used as shared volume and mounted inside container

### Build docker image with a base image

````
$ docker build -t <image name> -f dockerfile .
````

### Running the CA service container - Below command will run and log you into the container

````
$ docker run -v /tmp/run/dbus:/var/run/dbus:rw -v /tmp/volume:/tmp/files:rw --name <container name> -i -t --entrypoint=/bin/bash <image name>
````

### Running the Import utility
````
$ import.sh
````
#### Make sure the TABRMD container is running on the same dbus mountpoint on the host as the CA service container

### Expected Input files for SoftHSM operations
### 1. passphrase 2. privkey.pem.gpg 3. ca.cert
### Output - None

### Expected Input files for TPM Hardware opeartion
### 1. ca.cert 2. duPEncKey 3. dupPriv 4. dupPub 5. dupSymseed 6. tpm_handle (srkhandle)
### Output - None

### Expected Input for Application's operations
### 1. test.csr 2. CaSign.java(Application file) 3. ca.cert
### Output - test.cert (in /tmp Directory)