ccproxy.plugins.docker.adapter¶
ccproxy.plugins.docker.adapter
¶
Docker adapter for container operations.
DockerAdapter
¶
Bases: BaseAdapter, DockerAdapterProtocol
Docker adapter implementing both BaseAdapter and DockerAdapterProtocol.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
DockerConfig | None
|
Docker configuration |
None
|
Source code in ccproxy/plugins/docker/adapter.py
is_available
async
¶
Check if Docker is available on the system.
Source code in ccproxy/plugins/docker/adapter.py
run_container
async
¶
run_container(
image,
volumes,
environment,
command=None,
middleware=None,
user_context=None,
entrypoint=None,
ports=None,
)
Run a Docker container with specified configuration.
Source code in ccproxy/plugins/docker/adapter.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | |
run
async
¶
run(
image,
volumes,
environment,
command=None,
middleware=None,
user_context=None,
entrypoint=None,
ports=None,
)
Run a Docker container with specified configuration.
This is an alias for run_container method.
Source code in ccproxy/plugins/docker/adapter.py
exec_container
¶
exec_container(
image,
volumes,
environment,
command=None,
user_context=None,
entrypoint=None,
ports=None,
)
Execute a Docker container by replacing the current process.
This method builds the Docker command and replaces the current process with the Docker command using os.execvp, effectively handing over control to Docker.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
str
|
Docker image name/tag to run |
required |
volumes
|
list[DockerVolume]
|
List of volume mounts (host_path, container_path) |
required |
environment
|
DockerEnv
|
Dictionary of environment variables |
required |
command
|
list[str] | None
|
Optional command to run in the container |
None
|
user_context
|
DockerUserContext | None
|
Optional user context for Docker --user flag |
None
|
entrypoint
|
str | None
|
Optional custom entrypoint to override the image's default |
None
|
ports
|
list[DockerPortSpec] | None
|
Optional port specifications (e.g., ["8080:80", "localhost:9000:9000"]) |
None
|
Raises:
| Type | Description |
|---|---|
DockerError
|
If the container fails to execute |
OSError
|
If the command cannot be executed |
Source code in ccproxy/plugins/docker/adapter.py
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 | |
build_image
async
¶
Build a Docker image from a Dockerfile.
Source code in ccproxy/plugins/docker/adapter.py
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 | |
image_exists
async
¶
Check if a Docker image exists locally.
Source code in ccproxy/plugins/docker/adapter.py
pull_image
async
¶
Pull a Docker image from registry.
Source code in ccproxy/plugins/docker/adapter.py
build_docker_run_args
¶
build_docker_run_args(
settings,
command=None,
docker_image=None,
docker_env=None,
docker_volume=None,
docker_arg=None,
docker_home=None,
docker_workspace=None,
user_mapping_enabled=None,
user_uid=None,
user_gid=None,
)
Build Docker run arguments.
Returns:
| Type | Description |
|---|---|
tuple[str, list[str], list[str], list[str], dict[str, Any], dict[str, Any]]
|
Tuple of (image, volumes, environment, command, user_context, metadata) |
Source code in ccproxy/plugins/docker/adapter.py
handle_request
async
¶
Handle request (not used for Docker adapter).
handle_streaming
async
¶
Handle streaming request (not used for Docker adapter).
Source code in ccproxy/plugins/docker/adapter.py
create_docker_adapter
¶
create_docker_adapter(
image=None,
volumes=None,
environment=None,
additional_args=None,
user_context=None,
)
Factory function to create a DockerAdapter instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
str | None
|
Docker image to use (optional) |
None
|
volumes
|
list[DockerVolume] | None
|
Optional list of volume mappings |
None
|
environment
|
DockerEnv | None
|
Optional environment variables |
None
|
additional_args
|
list[str] | None
|
Optional additional Docker arguments |
None
|
user_context
|
DockerUserContext | None
|
Optional user context for container |
None
|
Returns:
| Type | Description |
|---|---|
DockerAdapterProtocol
|
Configured DockerAdapter instance |
Example
adapter = create_docker_adapter() if await adapter.is_available(): ... await adapter.run_container("ubuntu:latest", [], {})