Skip to content

Commit

Permalink
fix(entrypoint): continue startup if TLS cert import fails (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores authored Jun 3, 2024
1 parent 4d007dd commit 4546260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/docker/include/entrypoint.bash
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function importTrustStores() {
-trustcacerts \
-keystore "${SSL_TRUSTSTORE:-$CONF_DIR/truststore.p12}" \
-file "$cert"\
-storepass "$SSL_TRUSTSTORE_PASS"
-storepass "$SSL_TRUSTSTORE_PASS" || true
done

FLAGS+=(
Expand Down

0 comments on commit 4546260

Please sign in to comment.