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.6 or later.

Creating Network

Create a network for the containers, for example:

$ podman network create example

Alternatively, use an existing network.

Creating Shared Folders

Prepare the following folders:

  • certs for installing pre-existing certificates

  • conf for storing config files

  • logs for storing log files

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 \
    -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

See Also

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