-
Notifications
You must be signed in to change notification settings - Fork 137
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:
-
certs
for installing pre-existing certificates -
conf
for storing config files -
logs
for 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. |