You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be a benefit if services inside the container could trust/verify Yukon Government-signed certificates.
Could it be as simple as this?
# Install ca-certificates bundle inside the docker image and remove the temp folderRUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/*
# Copy certificate from your local machine to desired folder inside the image to be built.COPY ./yukon-government.crt /usr/local/share/ca-certificates/yukon-government.crt
# Run the command update-ca-certificates to update new cert into corresponding folderRUN update-ca-certificates
It would be a benefit if services inside the container could trust/verify Yukon Government-signed certificates.
Could it be as simple as this?
(from https://hackernoon.com/alpine-docker-image-with-secured-communication-ssl-tls-go-restful-api-128eb6b54f1f)
The text was updated successfully, but these errors were encountered: