Skip to content

Building CA Container

Endi S. Dewata edited this page Aug 22, 2022 · 10 revisions

Overview

Note
This page is still under construction.

This page describes the procedure to build PKI CA container.

Prerequisites

$ dnf install podman

Dockerfile

The CA Dockerfile is located at base/ca/Dockerfile.

Building Container Image Locally

$ podman build \
    -f base/ca/Dockerfile \
    -t pki-ca \
    .

Pushing Container Image to Quay

$ podman tag pki-ca:latest quay.io/<username>/pki-ca:latest
$ podman push quay.io/<username>/pki-ca:latest
Clone this wiki locally