Docker-DCO-1.1-Signed-off-by: Victor Vieux <vieux@docker.com> (github: vieux)
Upstream-commit: 3c422fe5bf45391a509fd3c7f33033baefb0a234
Component: engine
This commit is contained in:
Victor Vieux
2014-05-02 21:51:20 +00:00
parent 11bde7fe02
commit 16cdcfd13d
2 changed files with 25 additions and 0 deletions

View File

@ -36,6 +36,11 @@ You can still call an old version of the api using
### What's new
`GET /_ping`
**New!**
You can now ping the server via the `_ping` endpoint.
`GET /events`
**New!**

View File

@ -1162,6 +1162,26 @@ Show the docker version information
- **200** no error
- **500** server error
### Ping the docker server
`GET /_ping`
Ping the docker server
**Example request**:
GET /_ping HTTP/1.1
**Example response**:
HTTP/1.1 200 OK
OK
Status Codes:
- **200** - no error
### Create a new image from a container's changes
`POST /commit`