mirror of
https://github.com/docker/docs.git
synced 2026-03-31 00:08:55 +07:00
Merge pull request #547 from jimmyxian/master
'docker tag/push' api implementation
This commit is contained in:
@@ -18,8 +18,6 @@ GET "/containers/{name:.*}/attach/ws"
|
||||
|
||||
POST "/build"
|
||||
POST "/images/load"
|
||||
POST "/images/{name:.*}/push"
|
||||
POST "/images/{name:.*}/tag"
|
||||
```
|
||||
|
||||
## Endpoints which behave differently
|
||||
|
||||
@@ -511,8 +511,8 @@ func createRouter(c *context, enableCors bool) *mux.Router {
|
||||
"/build": notImplementedHandler,
|
||||
"/images/create": postImagesCreate,
|
||||
"/images/load": notImplementedHandler,
|
||||
"/images/{name:.*}/push": notImplementedHandler,
|
||||
"/images/{name:.*}/tag": notImplementedHandler,
|
||||
"/images/{name:.*}/push": proxyImage,
|
||||
"/images/{name:.*}/tag": proxyImage,
|
||||
"/containers/create": postContainersCreate,
|
||||
"/containers/{name:.*}/kill": proxyContainer,
|
||||
"/containers/{name:.*}/pause": proxyContainer,
|
||||
|
||||
Reference in New Issue
Block a user