curl --request GET \
--url http://localhost:8000/docker/running \
--header 'Authorization: Basic <encoded-value>'Check if Docker daemon is running.
Args: docker_service: Docker service dependency
Returns: Dictionary indicating if Docker is running
curl --request GET \
--url http://localhost:8000/docker/running \
--header 'Authorization: Basic <encoded-value>'Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Successful Response
Was this page helpful?