reactive-docker
reactive-docker copied to clipboard
A fully reactive scala client for the docker remote API.
Cosmetic only suggested tweak to readme example. --- This change is [](https://reviewable.io/reviews/almoehi/reactive-docker/18)
In https://github.com/almoehi/reactive-docker/blob/master/src/main/scala/com/kolor/docker/api/entities/ContainerConfiguration.scala shouldn't `image` be a `String` instead of an `Option[String]`, since it's a required value? Also I think `volumes` should be just a `Map[String, DockerVolume]`, same thing for `exposedPorts`,...
Changes: GET /version New! This endpoint now returns Os, Arch and KernelVersion. POST /containers/create POST /containers/(id)/start New! You can set ulimit settings to be used within the container. GET /info...
Changes: The most "breaking" change is addition of the ```label feature. I gues this will break the JSON parsers in some cases. The build supports LABEL command. Use this to...
Changes: GET /info New! info now returns the number of CPUs available on the machine (NCPU), total memory available (MemTotal), a user-friendly name describing the running Docker daemon (Name), a...
Changes: POST /containers/create New! It is now possible to set a container's HostConfig when creating a container. Previously this was only available when starting a container.
Changes: New! The hostConfig option now accepts the field CapAdd, which specifies a list of capabilities to add, and the field CapDrop, which specifies a list of capabilities to drop....
Changes: New! Sockets parameter added to the /info endpoint listing all the sockets the daemon is configured to listen on. POST /containers/(name)/start POST /containers/(name)/stop New! start and stop will now...
I fork and run the test but sbt complains with a Could not create an instance of test.DockerUsecaseSpec [error] [error] java.lang.Exception: Could not instantiate class test.DockerUsecaseSpec [error] caused by java.lang.reflect.InvocationTargetException...
Several errors are produced by the parser for the containerState request.