-
Notifications
You must be signed in to change notification settings - Fork 148
Deploying PKI Server Container
Endi S. Dewata edited this page Jun 3, 2024
·
7 revisions
|
Note
|
This page is still under construction. |
This document describes the process to deploy PKI server container with PKI 11.6 or later.
Create a network for the containers, for example:
$ podman network create example
Alternatively, use an existing network.
Prepare the following folders:
-
certsfor installing pre-existing certificates -
conffor storing config files -
logsfor storing log files
Run the PKI server container with the following command:
$ podman run \
--name=server \
--hostname=pki.example.com \
--network=example \
--network-alias=pki.example.com \
-v $PWD/certs:/certs \
-v $PWD/conf:/conf \
-v $PWD/logs:/logs \
-d \
quay.io/dogtagpki/pki-server:latest
Wait until the PKI server is running:
$ podman logs -f server
|
Tip
|
To find a page in the Wiki, enter the keywords in search field, press Enter, then click Wikis. |