Skip to content

Commit 46e1051

Browse files
authored
Fix TLS setup (#231)
1 parent 362df0e commit 46e1051

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

docker-compose-tls.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ services:
9696
context: .
9797
dockerfile: tls/Dockerfile.admin-tools-tls
9898
args:
99-
- BASEIMAGE=admin-tools:${TEMPORAL_VERSION}
100-
image: temporalio/admin-tools-tls:${TEMPORAL_VERSION}
99+
- BASEIMAGE=admin-tools:${TEMPORAL_ADMINTOOLS_VERSION}
100+
image: temporalio/admin-tools-tls:${TEMPORAL_ADMINTOOLS_VERSION}
101101
networks:
102102
- temporal-network
103103
stdin_open: true

tls/Dockerfile.admin-tools-tls

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
ARG BASEIMAGE
22
FROM temporalio/${BASEIMAGE}
33

4+
USER root
45
COPY ./.pki/ca.pem /usr/local/share/ca-certificates/ca.crt
56

67
RUN update-ca-certificates
8+
9+
USER temporal

0 commit comments

Comments
 (0)