Skip to content

Commit 0c8626e

Browse files
committed
Fixed TLS docs
1 parent dc16b56 commit 0c8626e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ docker --tls --tlscert /path/to/client-cert.pem --tlskey /path/to/client-key.pem
7272
```python
7373
tls_config = docker.tls.TLSConfig(
7474
client_cert=('/path/to/client-cert.pem', '/path/to/client-key.pem'),
75-
ca_cert='/path/to/ca.pem'
75+
verify='/path/to/ca.pem'
7676
)
7777
client = docker.Client(base_url='<https_url>', tls=tls_config)
7878
```

0 commit comments

Comments
 (0)