8 lines
229 B
Python
8 lines
229 B
Python
from .base import ApiBase
|
|
|
|
|
|
class ContainersApi(ApiBase):
|
|
def list_containers_by_endpoint(self, endpoint):
|
|
url = f"{self.base_url}/docker/{endpoint}/snapshot/containers"
|
|
return self.request("GET", url).json()
|