feat: add Dockerfile, docker-compose, and init script for step-ca with PostgreSQL support

This commit is contained in:
vorpax
2026-01-20 14:48:15 +00:00
commit 7a3e1fed35
3 changed files with 142 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM smallstep/step-ca
USER root
RUN apk update
RUN apk add --no-cache jq
COPY init.sh /scripts/init.sh
USER step
ENTRYPOINT [ "/scripts/init.sh"]