Deploying PKI Server Container - dogtagpki/pki GitHub Wiki

Overview

Note
This page is still under construction.

This document describes the process to deploy PKI server container with PKI 11.4 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=pki-server \
    --hostname=pki.example.com \
    --network=example \
    --network-alias=pki.example.com \
    -p 8080:8080 \
    -p 8443:8443 \
    --privileged \
    -d \
    quay.io/dogtagpki/pki-server:latest

Wait until the PKI server is running:

$ podman logs -f pki-server

See Also

⚠️ **GitHub.com Fallback** ⚠️