mirror of
https://github.com/temporalio/docker-compose.git
synced 2026-08-30 18:41:40 -07:00
Fix TLS setup (#231)
This commit is contained in:
committed by
GitHub
parent
362df0e7aa
commit
46e10513c2
@@ -96,8 +96,8 @@ services:
|
||||
context: .
|
||||
dockerfile: tls/Dockerfile.admin-tools-tls
|
||||
args:
|
||||
- BASEIMAGE=admin-tools:${TEMPORAL_VERSION}
|
||||
image: temporalio/admin-tools-tls:${TEMPORAL_VERSION}
|
||||
- BASEIMAGE=admin-tools:${TEMPORAL_ADMINTOOLS_VERSION}
|
||||
image: temporalio/admin-tools-tls:${TEMPORAL_ADMINTOOLS_VERSION}
|
||||
networks:
|
||||
- temporal-network
|
||||
stdin_open: true
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
ARG BASEIMAGE
|
||||
FROM temporalio/${BASEIMAGE}
|
||||
|
||||
USER root
|
||||
COPY ./.pki/ca.pem /usr/local/share/ca-certificates/ca.crt
|
||||
|
||||
RUN update-ca-certificates
|
||||
|
||||
USER temporal
|
||||
|
||||
Reference in New Issue
Block a user