e2e81a
% containers-certs.d 5 Directory for storing custom container-registry TLS configurations
5dd126
5dd126
# NAME
5dd126
containers-certs.d - Directory for storing custom container-registry TLS configurations
5dd126
5dd126
# DESCRIPTION
5dd126
A custom TLS configuration for a container registry can be configured by creating a directory under `$HOME/.config/containers/certs.d` or `/etc/containers/certs.d`.
5dd126
The name of the directory must correspond to the `host:port` of the registry (e.g., `my-registry.com:5000`).
5dd126
5dd126
## Directory Structure
5dd126
A certs directory can contain one or more files with the following extensions:
5dd126
5dd126
* `*.crt`  files with this extensions will be interpreted as CA certificates
5dd126
* `*.cert` files with this extensions will be interpreted as client certificates
5dd126
* `*.key`  files with this extensions will be interpreted as client keys
5dd126
5dd126
Note that the client certificate-key pair will be selected by the file name (e.g., `client.{cert,key}`).
5dd126
An exemplary setup for a registry running at `my-registry.com:5000` may look as follows:
5dd126
```
5dd126
/etc/containers/certs.d/    <- Certificate directory
5dd126
└── my-registry.com:5000    <- Hostname:port
5dd126
   ├── client.cert          <- Client certificate
5dd126
   ├── client.key           <- Client key
5dd126
   └── ca.crt               <- Certificate authority that signed the registry certificate
5dd126
```
5dd126
5dd126
# HISTORY
5dd126
Feb 2019, Originally compiled by Valentin Rothberg <rothberg@redhat.com>