Docker-DCO-1.1-Signed-off-by: Victor Vieux <vieux@docker.com> (github: vieux)
| ... | ... |
@@ -36,7 +36,16 @@ You can still call an old version of the api using |
| 36 | 36 |
|
| 37 | 37 |
### What's new |
| 38 | 38 |
|
| 39 |
-docker build now has support for the `forcerm` parameter to always remove containers |
|
| 39 |
+`POST /build` |
|
| 40 |
+ |
|
| 41 |
+**New!** |
|
| 42 |
+Build now has support for the `forcerm` parameter to always remove containers |
|
| 43 |
+ |
|
| 44 |
+`GET /containers/(name)/json` |
|
| 45 |
+`GET /images/(name)/json` |
|
| 46 |
+ |
|
| 47 |
+**New!** |
|
| 48 |
+All the JSON keys are now in CamelCase |
|
| 40 | 49 |
|
| 41 | 50 |
## v1.11 |
| 42 | 51 |
|
| ... | ... |
@@ -798,11 +798,9 @@ Return low-level information on the image `name` |
| 798 | 798 |
Content-Type: application/json |
| 799 | 799 |
|
| 800 | 800 |
{
|
| 801 |
- "id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc", |
|
| 802 |
- "parent":"27cf784147099545", |
|
| 803 |
- "created":"2013-03-23T22:24:18.818426-07:00", |
|
| 804 |
- "container":"3d67245a8d72ecf13f33dffac9f79dcdf70f75acb84d308770391510e0c23ad0", |
|
| 805 |
- "container_config": |
|
| 801 |
+ "Created":"2013-03-23T22:24:18.818426-07:00", |
|
| 802 |
+ "Container":"3d67245a8d72ecf13f33dffac9f79dcdf70f75acb84d308770391510e0c23ad0", |
|
| 803 |
+ "ContainerConfig": |
|
| 806 | 804 |
{
|
| 807 | 805 |
"Hostname":"", |
| 808 | 806 |
"User":"", |
| ... | ... |
@@ -823,6 +821,8 @@ Return low-level information on the image `name` |
| 823 | 823 |
"VolumesFrom":"", |
| 824 | 824 |
"WorkingDir":"" |
| 825 | 825 |
}, |
| 826 |
+ "Id":"b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc", |
|
| 827 |
+ "Parent":"27cf784147099545", |
|
| 826 | 828 |
"Size": 6824592 |
| 827 | 829 |
} |
| 828 | 830 |
|