Skip to content

Deploying PKI Server Container

Endi S. Dewata edited this page May 21, 2024 · 7 revisions

Overview

Note
This page is still under construction.

This document describes the process to deploy PKI server container with PKI 11.6 or later.

Creating Network

Create a network for the containers, for example:

$ podman network create example

Alternatively, use an existing network.

Deploying PKI Server Container

Run the PKI server container with the following command:

$ podman run \
    --name=server \
    --hostname=pki.example.com \
    --network=example \
    --network-alias=pki.example.com \
    -d \
    quay.io/dogtagpki/pki-server:latest

Wait until the PKI server is running:

$ podman logs -f server

See Also

Clone this wiki locally