You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
608 B
YAML
19 lines
608 B
YAML
version: "3.8"
|
|
services:
|
|
step-ca:
|
|
image: ${STEPCA_IMAGE}:${STEPCA_VERSION}
|
|
container_name: step-ca
|
|
hostname: ${STEPCA_HOSTNAME}.${DOMAIN_NAME}
|
|
environment:
|
|
- "DOCKER_STEPCA_INIT_NAME=${STEPCA_NAME}"
|
|
- "DOCKER_STEPCA_INIT_DNS_NAMES=localhost,${STEPCA_HOSTNAME}.${DOMAIN_NAME}"
|
|
- "DOCKER_STEPCA_INIT_ACME=true"
|
|
- "DOCKER_STEPCA_INIT_ADDRESS=:443"
|
|
# - "DOCKER_STEPCA_INIT_REMOTE_MANAGEMENT=true"
|
|
# - "DOCKER_STEPCA_INIT_PROVISIONER_NAME=admin"
|
|
# - "DOCKER_STEPCA_INIT_PASSWORD=<CHANGE>"
|
|
ports:
|
|
- 443:443
|
|
volumes:
|
|
- ./data:/home/step/
|