Browse code

Fix missing versions in example requests of api docs

It is not required to have version prefix for all the remote
APIs. Though there are still quite a few example requests
in api docs that does not have the version prefix.

This fix update the remote api docs to address this issue.

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>

Yong Tang authored on 2016/11/13 06:09:08
Showing 8 changed files
... ...
@@ -1044,7 +1044,7 @@ Remove the container `id` from the filesystem
1044 1044
 
1045 1045
 **Example request**:
1046 1046
 
1047
-    DELETE /containers/16253994b7c4?v=1 HTTP/1.1
1047
+    DELETE /v1.18/containers/16253994b7c4?v=1 HTTP/1.1
1048 1048
 
1049 1049
 **Example response**:
1050 1050
 
... ...
@@ -1462,7 +1462,7 @@ Remove the image `name` from the filesystem
1462 1462
 
1463 1463
 **Example request**:
1464 1464
 
1465
-    DELETE /images/test HTTP/1.1
1465
+    DELETE /v1.18/images/test HTTP/1.1
1466 1466
 
1467 1467
 **Example response**:
1468 1468
 
... ...
@@ -1765,7 +1765,7 @@ Docker images report the following events:
1765 1765
 
1766 1766
 **Example request**:
1767 1767
 
1768
-    GET /events?since=1374067924
1768
+    GET /v1.18/events?since=1374067924
1769 1769
 
1770 1770
 **Example response**:
1771 1771
 
... ...
@@ -1807,7 +1807,7 @@ See the [image tarball format](#image-tarball-format) for more details.
1807 1807
 
1808 1808
 **Example request**
1809 1809
 
1810
-    GET /images/ubuntu/get
1810
+    GET /v1.18/images/ubuntu/get
1811 1811
 
1812 1812
 **Example response**:
1813 1813
 
... ...
@@ -1836,7 +1836,7 @@ See the [image tarball format](#image-tarball-format) for more details.
1836 1836
 
1837 1837
 **Example request**
1838 1838
 
1839
-    GET /images/get?names=myname%2Fmyapp%3Alatest&names=busybox
1839
+    GET /v1.18/images/get?names=myname%2Fmyapp%3Alatest&names=busybox
1840 1840
 
1841 1841
 **Example response**:
1842 1842
 
... ...
@@ -1859,7 +1859,7 @@ See the [image tarball format](#image-tarball-format) for more details.
1859 1859
 
1860 1860
 **Example request**
1861 1861
 
1862
-    POST /images/load
1862
+    POST /v1.18/images/load
1863 1863
     Content-Type: application/x-tar
1864 1864
 
1865 1865
     Tarball in body
... ...
@@ -1083,7 +1083,7 @@ Remove the container `id` from the filesystem
1083 1083
 
1084 1084
 **Example request**:
1085 1085
 
1086
-    DELETE /containers/16253994b7c4?v=1 HTTP/1.1
1086
+    DELETE /v1.19/containers/16253994b7c4?v=1 HTTP/1.1
1087 1087
 
1088 1088
 **Example response**:
1089 1089
 
... ...
@@ -1528,7 +1528,7 @@ Remove the image `name` from the filesystem
1528 1528
 
1529 1529
 **Example request**:
1530 1530
 
1531
-    DELETE /images/test HTTP/1.1
1531
+    DELETE /v1.19/images/test HTTP/1.1
1532 1532
 
1533 1533
 **Example response**:
1534 1534
 
... ...
@@ -1845,7 +1845,7 @@ Docker images report the following events:
1845 1845
 
1846 1846
 **Example request**:
1847 1847
 
1848
-    GET /events?since=1374067924
1848
+    GET /v1.19/events?since=1374067924
1849 1849
 
1850 1850
 **Example response**:
1851 1851
 
... ...
@@ -1887,7 +1887,7 @@ See the [image tarball format](#image-tarball-format) for more details.
1887 1887
 
1888 1888
 **Example request**
1889 1889
 
1890
-    GET /images/ubuntu/get
1890
+    GET /v1.19/images/ubuntu/get
1891 1891
 
1892 1892
 **Example response**:
1893 1893
 
... ...
@@ -1916,7 +1916,7 @@ See the [image tarball format](#image-tarball-format) for more details.
1916 1916
 
1917 1917
 **Example request**
1918 1918
 
1919
-    GET /images/get?names=myname%2Fmyapp%3Alatest&names=busybox
1919
+    GET /v1.19/images/get?names=myname%2Fmyapp%3Alatest&names=busybox
1920 1920
 
1921 1921
 **Example response**:
1922 1922
 
... ...
@@ -1939,7 +1939,7 @@ See the [image tarball format](#image-tarball-format) for more details.
1939 1939
 
1940 1940
 **Example request**
1941 1941
 
1942
-    POST /images/load
1942
+    POST /v1.19/images/load
1943 1943
     Content-Type: application/x-tar
1944 1944
 
1945 1945
     Tarball in body
... ...
@@ -1090,7 +1090,7 @@ Remove the container `id` from the filesystem
1090 1090
 
1091 1091
 **Example request**:
1092 1092
 
1093
-    DELETE /containers/16253994b7c4?v=1 HTTP/1.1
1093
+    DELETE /v1.20/containers/16253994b7c4?v=1 HTTP/1.1
1094 1094
 
1095 1095
 **Example response**:
1096 1096
 
... ...
@@ -1235,7 +1235,7 @@ Upload a tar archive to be extracted to a path in the filesystem of container
1235 1235
 
1236 1236
 **Example request**:
1237 1237
 
1238
-    PUT /containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1238
+    PUT /v1.20/containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1239 1239
     Content-Type: application/x-tar
1240 1240
 
1241 1241
     {% raw %}
... ...
@@ -1682,7 +1682,7 @@ Remove the image `name` from the filesystem
1682 1682
 
1683 1683
 **Example request**:
1684 1684
 
1685
-    DELETE /images/test HTTP/1.1
1685
+    DELETE /v1.20/images/test HTTP/1.1
1686 1686
 
1687 1687
 **Example response**:
1688 1688
 
... ...
@@ -2000,7 +2000,7 @@ Docker images report the following events:
2000 2000
 
2001 2001
 **Example request**:
2002 2002
 
2003
-    GET /events?since=1374067924
2003
+    GET /v1.20/events?since=1374067924
2004 2004
 
2005 2005
 **Example response**:
2006 2006
 
... ...
@@ -2042,7 +2042,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2042 2042
 
2043 2043
 **Example request**
2044 2044
 
2045
-    GET /images/ubuntu/get
2045
+    GET /v1.20/images/ubuntu/get
2046 2046
 
2047 2047
 **Example response**:
2048 2048
 
... ...
@@ -2071,7 +2071,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2071 2071
 
2072 2072
 **Example request**
2073 2073
 
2074
-    GET /images/get?names=myname%2Fmyapp%3Alatest&names=busybox
2074
+    GET /v1.20/images/get?names=myname%2Fmyapp%3Alatest&names=busybox
2075 2075
 
2076 2076
 **Example response**:
2077 2077
 
... ...
@@ -2094,7 +2094,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2094 2094
 
2095 2095
 **Example request**
2096 2096
 
2097
-    POST /images/load
2097
+    POST /v1.20/images/load
2098 2098
     Content-Type: application/x-tar
2099 2099
 
2100 2100
     Tarball in body
... ...
@@ -1173,7 +1173,7 @@ Remove the container `id` from the filesystem
1173 1173
 
1174 1174
 **Example request**:
1175 1175
 
1176
-    DELETE /containers/16253994b7c4?v=1 HTTP/1.1
1176
+    DELETE /v1.21/containers/16253994b7c4?v=1 HTTP/1.1
1177 1177
 
1178 1178
 **Example response**:
1179 1179
 
... ...
@@ -1318,7 +1318,7 @@ Upload a tar archive to be extracted to a path in the filesystem of container
1318 1318
 
1319 1319
 **Example request**:
1320 1320
 
1321
-    PUT /containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1321
+    PUT /v1.21/containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1322 1322
     Content-Type: application/x-tar
1323 1323
 
1324 1324
     {% raw %}
... ...
@@ -1835,7 +1835,7 @@ Remove the image `name` from the filesystem
1835 1835
 
1836 1836
 **Example request**:
1837 1837
 
1838
-    DELETE /images/test HTTP/1.1
1838
+    DELETE /v1.21/images/test HTTP/1.1
1839 1839
 
1840 1840
 **Example response**:
1841 1841
 
... ...
@@ -2155,7 +2155,7 @@ Docker images report the following events:
2155 2155
 
2156 2156
 **Example request**:
2157 2157
 
2158
-    GET /events?since=1374067924
2158
+    GET /v1.21/events?since=1374067924
2159 2159
 
2160 2160
 **Example response**:
2161 2161
 
... ...
@@ -2198,7 +2198,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2198 2198
 
2199 2199
 **Example request**
2200 2200
 
2201
-    GET /images/ubuntu/get
2201
+    GET /v1.21/images/ubuntu/get
2202 2202
 
2203 2203
 **Example response**:
2204 2204
 
... ...
@@ -2227,7 +2227,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2227 2227
 
2228 2228
 **Example request**
2229 2229
 
2230
-    GET /images/get?names=myname%2Fmyapp%3Alatest&names=busybox
2230
+    GET /v1.21/images/get?names=myname%2Fmyapp%3Alatest&names=busybox
2231 2231
 
2232 2232
 **Example response**:
2233 2233
 
... ...
@@ -2250,7 +2250,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2250 2250
 
2251 2251
 **Example request**
2252 2252
 
2253
-    POST /images/load
2253
+    POST /v1.21/images/load
2254 2254
     Content-Type: application/x-tar
2255 2255
 
2256 2256
     Tarball in body
... ...
@@ -2637,7 +2637,7 @@ Instruct the driver to remove the volume (`name`).
2637 2637
 
2638 2638
 **Example request**:
2639 2639
 
2640
-    DELETE /volumes/tardis HTTP/1.1
2640
+    DELETE /v1.21/volumes/tardis HTTP/1.1
2641 2641
 
2642 2642
 **Example response**:
2643 2643
 
... ...
@@ -2912,7 +2912,7 @@ Instruct the driver to remove the network (`id`).
2912 2912
 
2913 2913
 **Example request**:
2914 2914
 
2915
-    DELETE /networks/22be93d5babb089c5aab8dbc369042fad48ff791584ca2da2100db837a1c7c30 HTTP/1.1
2915
+    DELETE /v1.21/networks/22be93d5babb089c5aab8dbc369042fad48ff791584ca2da2100db837a1c7c30 HTTP/1.1
2916 2916
 
2917 2917
 **Example response**:
2918 2918
 
... ...
@@ -1349,7 +1349,7 @@ Remove the container `id` from the filesystem
1349 1349
 
1350 1350
 **Example request**:
1351 1351
 
1352
-    DELETE /containers/16253994b7c4?v=1 HTTP/1.1
1352
+    DELETE /v1.22/containers/16253994b7c4?v=1 HTTP/1.1
1353 1353
 
1354 1354
 **Example response**:
1355 1355
 
... ...
@@ -1494,7 +1494,7 @@ Upload a tar archive to be extracted to a path in the filesystem of container
1494 1494
 
1495 1495
 **Example request**:
1496 1496
 
1497
-    PUT /containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1497
+    PUT /v1.22/containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1498 1498
     Content-Type: application/x-tar
1499 1499
 
1500 1500
     {% raw %}
... ...
@@ -2049,7 +2049,7 @@ Remove the image `name` from the filesystem
2049 2049
 
2050 2050
 **Example request**:
2051 2051
 
2052
-    DELETE /images/test HTTP/1.1
2052
+    DELETE /v1.22/images/test HTTP/1.1
2053 2053
 
2054 2054
 **Example response**:
2055 2055
 
... ...
@@ -2394,7 +2394,7 @@ Docker networks report the following events:
2394 2394
 
2395 2395
 **Example request**:
2396 2396
 
2397
-    GET /events?since=1374067924
2397
+    GET /v1.22/events?since=1374067924
2398 2398
 
2399 2399
 **Example response**:
2400 2400
 
... ...
@@ -2586,7 +2586,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2586 2586
 
2587 2587
 **Example request**
2588 2588
 
2589
-    GET /images/ubuntu/get
2589
+    GET /v1.22/images/ubuntu/get
2590 2590
 
2591 2591
 **Example response**:
2592 2592
 
... ...
@@ -2615,7 +2615,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2615 2615
 
2616 2616
 **Example request**
2617 2617
 
2618
-    GET /images/get?names=myname%2Fmyapp%3Alatest&names=busybox
2618
+    GET /v1.22/images/get?names=myname%2Fmyapp%3Alatest&names=busybox
2619 2619
 
2620 2620
 **Example response**:
2621 2621
 
... ...
@@ -2638,7 +2638,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2638 2638
 
2639 2639
 **Example request**
2640 2640
 
2641
-    POST /images/load
2641
+    POST /v1.22/images/load
2642 2642
     Content-Type: application/x-tar
2643 2643
 
2644 2644
     Tarball in body
... ...
@@ -2947,7 +2947,7 @@ Instruct the driver to remove the volume (`name`).
2947 2947
 
2948 2948
 **Example request**:
2949 2949
 
2950
-    DELETE /volumes/tardis HTTP/1.1
2950
+    DELETE /v1.22/volumes/tardis HTTP/1.1
2951 2951
 
2952 2952
 **Example response**:
2953 2953
 
... ...
@@ -3247,7 +3247,7 @@ Instruct the driver to remove the network (`id`).
3247 3247
 
3248 3248
 **Example request**:
3249 3249
 
3250
-    DELETE /networks/22be93d5babb089c5aab8dbc369042fad48ff791584ca2da2100db837a1c7c30 HTTP/1.1
3250
+    DELETE /v1.22/networks/22be93d5babb089c5aab8dbc369042fad48ff791584ca2da2100db837a1c7c30 HTTP/1.1
3251 3251
 
3252 3252
 **Example response**:
3253 3253
 
... ...
@@ -1384,7 +1384,7 @@ Remove the container `id` from the filesystem
1384 1384
 
1385 1385
 **Example request**:
1386 1386
 
1387
-    DELETE /containers/16253994b7c4?v=1 HTTP/1.1
1387
+    DELETE /v1.23/containers/16253994b7c4?v=1 HTTP/1.1
1388 1388
 
1389 1389
 **Example response**:
1390 1390
 
... ...
@@ -1529,7 +1529,7 @@ Upload a tar archive to be extracted to a path in the filesystem of container
1529 1529
 
1530 1530
 **Example request**:
1531 1531
 
1532
-    PUT /containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1532
+    PUT /v1.23/containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1533 1533
     Content-Type: application/x-tar
1534 1534
 
1535 1535
     {% raw %}
... ...
@@ -2092,7 +2092,7 @@ Remove the image `name` from the filesystem
2092 2092
 
2093 2093
 **Example request**:
2094 2094
 
2095
-    DELETE /images/test HTTP/1.1
2095
+    DELETE /v1.23/images/test HTTP/1.1
2096 2096
 
2097 2097
 **Example response**:
2098 2098
 
... ...
@@ -2444,7 +2444,7 @@ Docker networks report the following events:
2444 2444
 
2445 2445
 **Example request**:
2446 2446
 
2447
-    GET /events?since=1374067924
2447
+    GET /v1.23/events?since=1374067924
2448 2448
 
2449 2449
 **Example response**:
2450 2450
 
... ...
@@ -2636,7 +2636,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2636 2636
 
2637 2637
 **Example request**
2638 2638
 
2639
-    GET /images/ubuntu/get
2639
+    GET /v1.23/images/ubuntu/get
2640 2640
 
2641 2641
 **Example response**:
2642 2642
 
... ...
@@ -2665,7 +2665,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2665 2665
 
2666 2666
 **Example request**
2667 2667
 
2668
-    GET /images/get?names=myname%2Fmyapp%3Alatest&names=busybox
2668
+    GET /v1.23/images/get?names=myname%2Fmyapp%3Alatest&names=busybox
2669 2669
 
2670 2670
 **Example response**:
2671 2671
 
... ...
@@ -2688,7 +2688,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2688 2688
 
2689 2689
 **Example request**
2690 2690
 
2691
-    POST /images/load
2691
+    POST /v1.23/images/load
2692 2692
     Content-Type: application/x-tar
2693 2693
 
2694 2694
     Tarball in body
... ...
@@ -3005,7 +3005,7 @@ Return low-level information on the volume `name`
3005 3005
 
3006 3006
 **Example request**:
3007 3007
 
3008
-    GET /volumes/tardis
3008
+    GET /v1.23/volumes/tardis
3009 3009
 
3010 3010
 **Example response**:
3011 3011
 
... ...
@@ -3036,7 +3036,7 @@ Instruct the driver to remove the volume (`name`).
3036 3036
 
3037 3037
 **Example request**:
3038 3038
 
3039
-    DELETE /volumes/tardis HTTP/1.1
3039
+    DELETE /v1.23/volumes/tardis HTTP/1.1
3040 3040
 
3041 3041
 **Example response**:
3042 3042
 
... ...
@@ -3364,7 +3364,7 @@ Instruct the driver to remove the network (`id`).
3364 3364
 
3365 3365
 **Example request**:
3366 3366
 
3367
-    DELETE /networks/22be93d5babb089c5aab8dbc369042fad48ff791584ca2da2100db837a1c7c30 HTTP/1.1
3367
+    DELETE /v1.23/networks/22be93d5babb089c5aab8dbc369042fad48ff791584ca2da2100db837a1c7c30 HTTP/1.1
3368 3368
 
3369 3369
 **Example response**:
3370 3370
 
... ...
@@ -1411,7 +1411,7 @@ Remove the container `id` from the filesystem
1411 1411
 
1412 1412
 **Example request**:
1413 1413
 
1414
-    DELETE /containers/16253994b7c4?v=1 HTTP/1.1
1414
+    DELETE /v1.24/containers/16253994b7c4?v=1 HTTP/1.1
1415 1415
 
1416 1416
 **Example response**:
1417 1417
 
... ...
@@ -1524,7 +1524,7 @@ Upload a tar archive to be extracted to a path in the filesystem of container
1524 1524
 
1525 1525
 **Example request**:
1526 1526
 
1527
-    PUT /containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1527
+    PUT /v1.24/containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1528 1528
     Content-Type: application/x-tar
1529 1529
 
1530 1530
     {% raw %}
... ...
@@ -2088,7 +2088,7 @@ Remove the image `name` from the filesystem
2088 2088
 
2089 2089
 **Example request**:
2090 2090
 
2091
-    DELETE /images/test HTTP/1.1
2091
+    DELETE /v1.24/images/test HTTP/1.1
2092 2092
 
2093 2093
 **Example response**:
2094 2094
 
... ...
@@ -2453,7 +2453,7 @@ Docker daemon report the following event:
2453 2453
 
2454 2454
 **Example request**:
2455 2455
 
2456
-    GET /events?since=1374067924
2456
+    GET /v1.24/events?since=1374067924
2457 2457
 
2458 2458
 **Example response**:
2459 2459
 
... ...
@@ -2646,7 +2646,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2646 2646
 
2647 2647
 **Example request**
2648 2648
 
2649
-    GET /images/ubuntu/get
2649
+    GET /v1.24/images/ubuntu/get
2650 2650
 
2651 2651
 **Example response**:
2652 2652
 
... ...
@@ -2675,7 +2675,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2675 2675
 
2676 2676
 **Example request**
2677 2677
 
2678
-    GET /images/get?names=myname%2Fmyapp%3Alatest&names=busybox
2678
+    GET /v1.24/images/get?names=myname%2Fmyapp%3Alatest&names=busybox
2679 2679
 
2680 2680
 **Example response**:
2681 2681
 
... ...
@@ -2698,7 +2698,7 @@ See the [image tarball format](#image-tarball-format) for more details.
2698 2698
 
2699 2699
 **Example request**
2700 2700
 
2701
-    POST /images/load
2701
+    POST /v1.24/images/load
2702 2702
     Content-Type: application/x-tar
2703 2703
 
2704 2704
     Tarball in body
... ...
@@ -3030,7 +3030,7 @@ Return low-level information on the volume `name`
3030 3030
 
3031 3031
 **Example request**:
3032 3032
 
3033
-    GET /volumes/tardis
3033
+    GET /v1.24/volumes/tardis
3034 3034
 
3035 3035
 **Example response**:
3036 3036
 
... ...
@@ -3082,7 +3082,7 @@ Instruct the driver to remove the volume (`name`).
3082 3082
 
3083 3083
 **Example request**:
3084 3084
 
3085
-    DELETE /volumes/tardis HTTP/1.1
3085
+    DELETE /v1.24/volumes/tardis HTTP/1.1
3086 3086
 
3087 3087
 **Example response**:
3088 3088
 
... ...
@@ -3414,7 +3414,7 @@ Instruct the driver to remove the network (`id`).
3414 3414
 
3415 3415
 **Example request**:
3416 3416
 
3417
-    DELETE /networks/22be93d5babb089c5aab8dbc369042fad48ff791584ca2da2100db837a1c7c30 HTTP/1.1
3417
+    DELETE /v1.24/networks/22be93d5babb089c5aab8dbc369042fad48ff791584ca2da2100db837a1c7c30 HTTP/1.1
3418 3418
 
3419 3419
 **Example response**:
3420 3420
 
... ...
@@ -3818,7 +3818,7 @@ Removes a plugin
3818 3818
 **Example request**:
3819 3819
 
3820 3820
 ```
3821
-DELETE /plugins/tiborvass/no-remove:latest HTTP/1.1
3821
+DELETE /v1.24/plugins/tiborvass/no-remove:latest HTTP/1.1
3822 3822
 ```
3823 3823
 
3824 3824
 The `:latest` tag is optional, and is used as default if omitted.
... ...
@@ -4053,7 +4053,7 @@ Remove a node from the swarm.
4053 4053
 
4054 4054
 **Example request**:
4055 4055
 
4056
-    DELETE /nodes/24ifsmvkjbyhk HTTP/1.1
4056
+    DELETE /v1.24/nodes/24ifsmvkjbyhk HTTP/1.1
4057 4057
 
4058 4058
 **Example response**:
4059 4059
 
... ...
@@ -4693,7 +4693,7 @@ Stop and remove the service `id`
4693 4693
 
4694 4694
 **Example request**:
4695 4695
 
4696
-    DELETE /services/16253994b7c4 HTTP/1.1
4696
+    DELETE /v1.24/services/16253994b7c4 HTTP/1.1
4697 4697
 
4698 4698
 **Example response**:
4699 4699
 
... ...
@@ -1467,7 +1467,7 @@ Remove the container `id` from the filesystem
1467 1467
 
1468 1468
 **Example request**:
1469 1469
 
1470
-    DELETE /containers/16253994b7c4?v=1 HTTP/1.1
1470
+    DELETE /v1.25/containers/16253994b7c4?v=1 HTTP/1.1
1471 1471
 
1472 1472
 **Example response**:
1473 1473
 
... ...
@@ -1580,7 +1580,7 @@ Upload a tar archive to be extracted to a path in the filesystem of container
1580 1580
 
1581 1581
 **Example request**:
1582 1582
 
1583
-    PUT /containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1583
+    PUT /v1.25/containers/8cce319429b2/archive?path=/vol1 HTTP/1.1
1584 1584
     Content-Type: application/x-tar
1585 1585
 
1586 1586
     {% raw %}
... ...
@@ -2272,7 +2272,7 @@ Remove the image `name` from the filesystem
2272 2272
 
2273 2273
 **Example request**:
2274 2274
 
2275
-    DELETE /images/test HTTP/1.1
2275
+    DELETE /v1.25/images/test HTTP/1.1
2276 2276
 
2277 2277
 **Example response**:
2278 2278
 
... ...
@@ -2898,7 +2898,7 @@ Docker daemon report the following event:
2898 2898
 
2899 2899
 **Example request**:
2900 2900
 
2901
-    GET /events?since=1374067924
2901
+    GET /v1.25/events?since=1374067924
2902 2902
 
2903 2903
 **Example response**:
2904 2904
 
... ...
@@ -3091,7 +3091,7 @@ See the [image tarball format](#image-tarball-format) for more details.
3091 3091
 
3092 3092
 **Example request**
3093 3093
 
3094
-    GET /images/ubuntu/get
3094
+    GET /v1.25/images/ubuntu/get
3095 3095
 
3096 3096
 **Example response**:
3097 3097
 
... ...
@@ -3120,7 +3120,7 @@ See the [image tarball format](#image-tarball-format) for more details.
3120 3120
 
3121 3121
 **Example request**
3122 3122
 
3123
-    GET /images/get?names=myname%2Fmyapp%3Alatest&names=busybox
3123
+    GET /v1.25/images/get?names=myname%2Fmyapp%3Alatest&names=busybox
3124 3124
 
3125 3125
 **Example response**:
3126 3126
 
... ...
@@ -3143,7 +3143,7 @@ See the [image tarball format](#image-tarball-format) for more details.
3143 3143
 
3144 3144
 **Example request**
3145 3145
 
3146
-    POST /images/load
3146
+    POST /v1.25/images/load
3147 3147
     Content-Type: application/x-tar
3148 3148
 
3149 3149
     Tarball in body
... ...
@@ -3490,7 +3490,7 @@ Return low-level information on the volume `name`
3490 3490
 
3491 3491
 **Example request**:
3492 3492
 
3493
-    GET /volumes/tardis
3493
+    GET /v1.25/volumes/tardis
3494 3494
 
3495 3495
 **Example response**:
3496 3496
 
... ...
@@ -3547,7 +3547,7 @@ Instruct the driver to remove the volume (`name`).
3547 3547
 
3548 3548
 **Example request**:
3549 3549
 
3550
-    DELETE /volumes/tardis HTTP/1.1
3550
+    DELETE /v1.25/volumes/tardis HTTP/1.1
3551 3551
 
3552 3552
 **Example response**:
3553 3553
 
... ...
@@ -3920,7 +3920,7 @@ Instruct the driver to remove the network (`id`).
3920 3920
 
3921 3921
 **Example request**:
3922 3922
 
3923
-    DELETE /networks/22be93d5babb089c5aab8dbc369042fad48ff791584ca2da2100db837a1c7c30 HTTP/1.1
3923
+    DELETE /v1.25/networks/22be93d5babb089c5aab8dbc369042fad48ff791584ca2da2100db837a1c7c30 HTTP/1.1
3924 3924
 
3925 3925
 **Example response**:
3926 3926
 
... ...
@@ -4296,7 +4296,7 @@ Content-Type: application/json
4296 4296
 **Example request**:
4297 4297
 
4298 4298
 
4299
-    POST /plugins/tiborvass/no-remove/set
4299
+    POST /v1.25/plugins/tiborvass/no-remove/set
4300 4300
     Content-Type: application/json
4301 4301
 
4302 4302
     ["DEBUG=1"]
... ...
@@ -4375,7 +4375,7 @@ Removes a plugin
4375 4375
 **Example request**:
4376 4376
 
4377 4377
 ```
4378
-DELETE /plugins/tiborvass/no-remove:latest HTTP/1.1
4378
+DELETE /v1.25/plugins/tiborvass/no-remove:latest HTTP/1.1
4379 4379
 ```
4380 4380
 
4381 4381
 The `:latest` tag is optional, and is used as default if omitted.
... ...
@@ -4653,7 +4653,7 @@ Remove a node from the swarm.
4653 4653
 
4654 4654
 **Example request**:
4655 4655
 
4656
-    DELETE /nodes/24ifsmvkjbyhk HTTP/1.1
4656
+    DELETE /v1.25/nodes/24ifsmvkjbyhk HTTP/1.1
4657 4657
 
4658 4658
 **Example response**:
4659 4659
 
... ...
@@ -5367,7 +5367,7 @@ Stop and remove the service `id`
5367 5367
 
5368 5368
 **Example request**:
5369 5369
 
5370
-    DELETE /services/16253994b7c4 HTTP/1.1
5370
+    DELETE /v1.25/services/16253994b7c4 HTTP/1.1
5371 5371
 
5372 5372
 **Example response**:
5373 5373
 
... ...
@@ -5639,7 +5639,7 @@ Get `stdout` and `stderr` logs from the service ``id``
5639 5639
 
5640 5640
 **Example request**:
5641 5641
 
5642
-     GET /services/4fa6e0f0c678/logs?stderr=1&stdout=1&timestamps=1&follow=1&tail=10&since=1428990821 HTTP/1.1
5642
+     GET /v1.25/services/4fa6e0f0c678/logs?stderr=1&stdout=1&timestamps=1&follow=1&tail=10&since=1428990821 HTTP/1.1
5643 5643
 
5644 5644
 **Example response**:
5645 5645
 
... ...
@@ -5988,7 +5988,7 @@ List secrets
5988 5988
 
5989 5989
 **Example request**:
5990 5990
 
5991
-    GET /secrets HTTP/1.1
5991
+    GET /v1.25/secrets HTTP/1.1
5992 5992
 
5993 5993
 **Example response**:
5994 5994
 
... ...
@@ -6026,7 +6026,7 @@ Create a secret
6026 6026
 
6027 6027
 **Example request**:
6028 6028
 
6029
-    POST /secrets/create HTTP/1.1
6029
+    POST /v1.25/secrets/create HTTP/1.1
6030 6030
     Content-Type: application/json
6031 6031
 
6032 6032
     {
... ...
@@ -6066,7 +6066,7 @@ Get details on the secret `id`
6066 6066
 
6067 6067
 **Example request**:
6068 6068
 
6069
-    GET /secrets/ktnbjxoalbkvbvedmg1urrz8h HTTP/1.1
6069
+    GET /v1.25/secrets/ktnbjxoalbkvbvedmg1urrz8h HTTP/1.1
6070 6070
 
6071 6071
 **Example response**:
6072 6072
 
... ...
@@ -6099,7 +6099,7 @@ Remove the secret `id` from the secret store
6099 6099
 
6100 6100
 **Example request**:
6101 6101
 
6102
-    DELETE /secrets/ktnbjxoalbkvbvedmg1urrz8h HTTP/1.1
6102
+    DELETE /v1.25/secrets/ktnbjxoalbkvbvedmg1urrz8h HTTP/1.1
6103 6103
 
6104 6104
 **Example response**:
6105 6105