Enhancement: Support more docker API connection options. (#5304)
Docker CI / Linting Checks (push) Waiting to run
Docker CI / Docker Build & Push (push) Blocked by required conditions

This commit is contained in:
Florian Apolloner
2025-05-22 07:35:29 -07:00
committed by GitHub
parent ea37ab2f78
commit 6cf3abd45e
2 changed files with 20 additions and 0 deletions
+12
View File
@@ -79,6 +79,18 @@ my-docker:
Note: This does not require TLS certificates if the proxy handles encryption. Do not use `protocol: https` unless you’re sure the target host supports HTTPS.
You can further customize the connection options via `pathPrefix` and `headers`:
```yaml
my-docker:
host: dockerproxy
port: 443
protocol: https
pathPrefix: /docker_api/ # If a reverse proxy serves the API on a subpath
headers:
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ== # Send an authorization header if the API access is secured via basic auth
```
## Using Socket Directly
If you'd rather use the socket directly, first make sure that you're passing the local socket into the Docker container.