mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07:00
server and signer, and set these to be the default configuration files when running the images. Compose specifies the configuration with MySQL. Signed-off-by: Ying Li <ying.li@docker.com>
23 lines
450 B
JSON
23 lines
450 B
JSON
{
|
|
"server": {
|
|
"http_addr": ":4443",
|
|
"tls_key_file": "./notary-server.key",
|
|
"tls_cert_file": "./notary-server.crt"
|
|
},
|
|
"trust_service": {
|
|
"type": "remote",
|
|
"hostname": "notarysigner",
|
|
"port": "7899",
|
|
"tls_ca_file": "./root-ca.crt",
|
|
"key_algorithm": "ecdsa",
|
|
"tls_client_cert": "./notary-server.crt",
|
|
"tls_client_key": "./notary-server.key"
|
|
},
|
|
"logging": {
|
|
"level": "debug"
|
|
},
|
|
"storage": {
|
|
"backend": "memory"
|
|
}
|
|
}
|