From 33855392d843114309b909ecf1e980328715717f Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Wed, 9 Jul 2014 17:02:36 -0700 Subject: [PATCH] Replace ID with Path on the container Docker-DCO-1.1-Signed-off-by: Michael Crosby (github: crosbymichael) --- container.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/container.go b/container.go index 6e6c2bd8..5fb2bba6 100644 --- a/container.go +++ b/container.go @@ -9,8 +9,8 @@ package libcontainer // be destroyed by a separate process, any function may return that the container // was not found. type Container interface { - // Returns the ID of this container. - ID() string + // Returns the path to the container which contains the state + Path() string // Returns the current run state of the container. //