Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael) Upstream-commit: 36c3614fdde079fad178390f651945fba884668a Component: engine
17 lines
297 B
Go
17 lines
297 B
Go
package docker
|
|
|
|
import (
|
|
"github.com/dotcloud/docker/archive"
|
|
"github.com/dotcloud/docker/utils"
|
|
)
|
|
|
|
type Change struct {
|
|
archive.Change
|
|
}
|
|
|
|
// Links come in the format of
|
|
// name:alias
|
|
func parseLink(rawLink string) (map[string]string, error) {
|
|
return utils.PartParser("name:alias", rawLink)
|
|
}
|