mirror of
https://github.com/docker/docs.git
synced 2026-03-29 15:28:51 +07:00
This also lays the foundation for the possibility of log drivers in the future, if it is decided that is a direction to pursue. Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
13 lines
199 B
Go
13 lines
199 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/codegangsta/cli"
|
|
"github.com/docker/machine/log"
|
|
)
|
|
|
|
func cmdIp(c *cli.Context) {
|
|
if err := runActionWithContext("ip", c); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|