soroban-cli
soroban-cli copied to clipboard
Support SSL connection to docker in `network container start`
- 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();
}