Georg Kunz
Georg Kunz
Support methods for image and misc endpoints. Currently not ready for merge (WIP)
The attach endpoint allows to open stdin to the container but is currently not supported by Docker client. See http://docs.docker.io/en/latest/api/docker_remote_api_v1.5/#id15
Allow monitoring of Docker events via client, see http://docs.docker.io/en/latest/api/docker_remote_api_v1.5/#id35 Open question is if we should only support polling or/and streaming.
A first implementation of the build endpoint `POST /build` supports input by GIT URL but should also accept input by stdin.
Current implementation to delete an image does not return the response but actually sends back JSON.
API endpoint `POST /images/(name)/tag` provides tagging an image into a repository and must be implemented in the docker-client. See http://docs.docker.io/en/latest/api/docker_remote_api_v1.5/#id26
API endpoint `POST /images/(name)/push` allows pushing an image to a given registry. Needs implementation.
API endpoint `POST /images/create` supports image creation by sending a tar archive file. Feature should be implemented in docker-client. See http://docs.docker.io/en/latest/api/docker_remote_api_v1.5/#id21
All current endpoints target Docker Remote API v1.0 and should be updated to the newest API version.