type Link struct {
// Parent container IP address ParentIP string// Child container IP address ChildIP string// Link name Name string// Child environments variables ChildEnvironment []string// Child exposed ports Ports []nat.Port
}
Link struct holds information about parent/child linked container
ToEnv creates a string's slice containing child container information in
the form of environment variables which will be later exported on container
startup.