mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-06 13:41:36 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
02f0c1e46d | ||
|
|
dbfb3eb923 | ||
|
|
a078d3c872 |
@@ -1,5 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.4.4 (2013-06-19)
|
||||||
|
- Builder: fix a regression introduced in 0.4.3 which caused builds to fail on new clients.
|
||||||
|
|
||||||
## 0.4.3 (2013-06-19)
|
## 0.4.3 (2013-06-19)
|
||||||
+ Builder: ADD of a local file will detect tar archives and unpack them
|
+ Builder: ADD of a local file will detect tar archives and unpack them
|
||||||
* Runtime: Remove bsdtar dependency
|
* Runtime: Remove bsdtar dependency
|
||||||
|
|||||||
+2
-2
@@ -29,7 +29,7 @@ import (
|
|||||||
"unicode"
|
"unicode"
|
||||||
)
|
)
|
||||||
|
|
||||||
const VERSION = "0.4.3"
|
const VERSION = "0.4.4"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
GITCOMMIT string
|
GITCOMMIT string
|
||||||
@@ -197,7 +197,7 @@ func (cli *DockerCli) CmdBuild(args ...string) error {
|
|||||||
v := &url.Values{}
|
v := &url.Values{}
|
||||||
v.Set("t", *tag)
|
v.Set("t", *tag)
|
||||||
// Send the multipart request with correct content-type
|
// Send the multipart request with correct content-type
|
||||||
req, err := http.NewRequest("POST", fmt.Sprintf("/v%s/build?%s", APIVERSION, v.Encode()), multipartBody)
|
req, err := http.NewRequest("POST", fmt.Sprintf("/v%g/build?%s", APIVERSION, v.Encode()), multipartBody)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user