Skip to content

Commit

Permalink
Merge pull request #58 from esben/master
Browse files Browse the repository at this point in the history
Final changes before 0.2.0 release
  • Loading branch information
esben authored Aug 28, 2016
2 parents bf777be + a43bb22 commit 9be3e75
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
0.2.0 (in development)
0.2.0 (2016-08-28)
----------------------
* Add container_remove() method.
* Add container_start() method.
* Add container_wait() method.
* Add container_stop() method.
* Add container_restart() method.
* Add container_kill() method.
* Allow private registry image names.
* Fixed handling of linked containers in containers().
* Support DOCKER_HOST environment variable.
* Add shell script to do manual testing.

0.1.0 (2016-08-13)
------------------
Expand Down
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ unit and integration tests in place.
Documentation
-------------

Documentation will be hosted on http://readthedocs.org when I have finished
the setup for that.
Documentation is build with Sphinx, and is hosted on http://readthedocs.org
4 changes: 4 additions & 0 deletions xd/docker/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,10 @@ def container_kill(self,
Send signal to container, and (maybe) wait for the container to exit.
Note: Prior to Docker version 1.8, kill succeeds (without actually
doing anything) when run on existing but stopped containers. Docker
1.8 and newer fails out with a ServerError exception.
Arguments:
container: The container to remove (id or name).
signal: Signal to send to container.
Expand Down

0 comments on commit 9be3e75

Please sign in to comment.