docker-hs icon indicating copy to clipboard operation
docker-hs copied to clipboard

A Haskell library for the Docker Engine API

Results 20 docker-hs issues
Sort by recently updated
recently updated
newest added

Bumps [actions/cache](https://github.com/actions/cache) from 3.0.1 to 3.0.5. Release notes Sourced from actions/cache's releases. v3.0.5 Removed error handling by consuming actions/cache 3.0 toolkit, Now cache server error handling will be done by...

dependencies

Bumps [haskell/actions](https://github.com/haskell/actions) from 1 to 2. Commits f7b0997 Merge pull request #105 from rethab/feat/node-16 b9d18ea update dist 97946cc bye 82a6a76 pth bf9b0ac paths d933549 hlint-setup cdd84c6 add check 71efc90 generate...

dependencies

hello I get 2 errors inspecting containers - ` [WARN] DockerClientDecodeError "Error in $.Config.Cmd: parsing [] failed, expected Array, but encountered Null"` - `[WARN] DockerClientDecodeError "Error in $.Config: key \"StopSignal\"...

I haven't investigated this thoroughly, but it appears that the `memorySwap` configuration documented here: seems to be ignored by docker, and when inspecting the running container it always has: "MemorySwap":...

Fixes #82. `pullImage` now takes a `PullOpts` argument, which includes an optional `AuthConfig`. For more details, see: https://docs.docker.com/engine/api/v1.41/#section/Authentication

There's a `TODO` in the Haddocks on `pullImage`: https://hackage.haskell.org/package/docker-0.6.0.5/docs/Docker-Client-Api.html#v:pullImage I'd like to take a swing at the second of those, and then the first. Any thoughts/suggestions/recommendations/requirements on the implementation?

Both `defaultHttpHandler` and `unixHttpHandler` use `defaultManagerSettings` for which `responseTimeout = ResponseTimeoutDefault`. This just came to bite me when I used the `waitContainer` API with a non-trivial container task. It seems...

The non-streaming log API doesn't return a normal bytestring. It returns the string encoded in some way that I couldn't manage to google. This is the only place I could...