Results 11 comments of JP

I'm interested in this functionality. It seems like #602 implements this. Do you think this will be merged soon?

Hi @paolino. If you want to fix this, you probably need to modify the [`FromJSON` instance for `ContainerConfig`](https://github.com/denibertovic/docker-hs/blob/78ecdadb8b307cb50b4c98435a8eb99c57c69506/src/Docker/Client/Types.hs#L1545) to parse a null `"Cmd"` as `[]`. For `"StopSignal"`, I'm not sure...

Hi @benperez. Support for tagging and pushing images would definitely be appreciated. I think we'd need to be careful in parsing and validating inputs (we probably shouldn't just accept `Text`s)....

Hi @epicallan! We'd welcome a PR that implements this. Please include an integration test if you do. It looks like this was added in API version 1.25, so we'd have...

It'd be great to have more documentation. Any effort on this front would be appreciated. @denibertovic, do you have any thoughts on how this should be structured? Maybe the README.md...

I think the best solution would be to track down what's causing the exception and have it return something like `Left "Unauthorized"` instead. I'd say catching the exception is also...

I'm not sure when I can get around to it, but I'll take a shot when I get the chance. I briefly took a look to find the code that...

Ok thanks. I'll start there. FYI, it was a [StatusCodeException](http://hackage.haskell.org/package/http-client-0.4.11.1/docs/Network-HTTP-Client-Internal.html#v:StatusCodeException).

I am also receiving the same error from a cloned version of this repository. ``` dyld: lazy symbol binding failed: Symbol not found: _square Referenced from: /Users/name/Library/Developer/Xcode/DerivedData/SwiftHaskell-dwmaozpbzaxvtwacjfoxvvpnqfwe/Build/Products/Debug/SwiftAppLibrary.framework/Versions/A/SwiftAppLibrary Expected in: flat...

Something must have changed in GHC. The symbol is present after reverting to GHC 8.0.1: ``` $ nm -g build/SwiftHaskell | grep square 00000001005a1f28 D _Main_square_closure 00000001000030b8 T _Main_square_info 00000001005a1f20...