Volodymyr Shandak
Volodymyr Shandak
it looks like cross tries to get info from not available container `docker inspect runner-xqkuh56d-project-43-concurrent-0`. I called to check list of containers `docker container ls` it returned an empty list...
yeah, I saw it, but Docker does not see any of the containers inside. Seems no one value fits because nothing is available.
sure ``` docker context inspect [ { "Name": "default", "Metadata": {}, "Endpoints": { "docker": { "Host": "tcp://docker:2375/", "SkipTLSVerify": false } }, "TLSMaterial": {}, "Storage": { "MetadataPath": "\u003cIN MEMORY\u003e", "TLSPath": "\u003cIN...
What do you expect to see from `docker context inspect` instead of mine result @Emilgardis ?
piece of json ``` [ { "name": "start_date", "in": "path", "description": "Start date filter", "required": true, "schema": { "type": "string" } }, { "name": "end_date", "in": "path", "description": "End date...
The same issue if I'm trying to do it via struct ``` #[derive(Deserialize, IntoParams, utoipa::ToSchema)] pub struct StartEndDate { /// Start date filter #[schema(value_type = String, format = Date)] pub...
actix_web
I'm trying to use this Dockerfile with only one difference I built it from the latest `docker.io/library/rust:1.69.0-slim-bullseye`. It's a famous issue when some projects have a dependency on openssl. This...