soroban-cli icon indicating copy to clipboard operation
soroban-cli copied to clipboard

Support SSL connection to docker in `network container start`

Open elizabethengelman opened this issue 1 year ago • 0 comments

  • this will involve adding the SSL feature to bollard
  • we'll also need to check for the DOCKER_TLS_VERIFY env var or something like this:
#[cfg(feature = "SSL")]
if env::var("DOCKER_TLS_VERIFY").is_ok() {
return Docker::connect_with_ssl_defaults();
}

elizabethengelman avatar Jul 03 '24 16:07 elizabethengelman