prefect_docker.host
Module containing Docker host settings.
DockerHost
Bases: Block
Block used to manage settings for interacting with a Docker host.
Attributes:
Name | Type | Description |
---|---|---|
base_url |
Optional[str]
|
URL to the Docker server, e.g. |
version |
str
|
The version of the API to use. Set to auto to automatically detect the server's version. |
timeout |
Optional[int]
|
Default timeout for API calls, in seconds. |
max_pool_size |
Optional[int]
|
The maximum number of connections to save in the pool. |
client_kwargs |
Dict[str, Any]
|
Additional keyword arguments to pass to
|
Examples:
Get a Docker Host client.
from prefect_docker import DockerHost
docker_host = DockerHost(
base_url="tcp://127.0.0.1:1234",
max_pool_size=4
)
with docker_host.get_client() as client:
... # Use the client for Docker operations
Source code in prefect_docker/host.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
|
get_client()
Gets a Docker Client to communicate with a Docker host.
Returns:
Type | Description |
---|---|
DockerClient
|
A Docker Client. |
Source code in prefect_docker/host.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
|