containers: Missing properties + string represenation

This commit is contained in:
Einar Forselv 2019-11-26 14:06:01 +01:00
parent d27ff28f53
commit aa7271c159
1 changed files with 11 additions and 1 deletions

View File

@ -13,7 +13,6 @@ class Container:
def __init__(self, data: dict):
self._data = data
self.id = data['Id']
self.name = data['Name'].replace('/', '')
self._state = data.get('State')
self._config = data.get('Config')
@ -87,6 +86,11 @@ class Container:
"""Is the container running?"""
return self._state.get('Running', False)
@property
def name(self) -> str:
"""Container name"""
return self._data['Name'].replace('/', '')
@property
def service_name(self) -> str:
"""Name of the container/service"""
@ -169,6 +173,12 @@ class Container:
return self.id == other.id
def __repr__(self):
return str(self)
def __str__(self):
return "<Container {}>".format(self.name)
class Mount:
"""Represents a volume mount (volume or bind)"""