restic-compose-backup/restic_volume_backup/utils.py
Einar Forselv 6bcb31da98 Query containers using the most recent API version
This means we will also get the Config section with env vars
2019-04-18 03:49:47 +02:00

17 lines
393 B
Python

import docker
from restic_volume_backup.config import Config
def list_containers():
"""
List all containers.
Returns:
List of raw container json data from the api
"""
config = Config()
client = docker.DockerClient(base_url=config.docker_base_url)
all_containers = client.containers.list()
client.close()
return [c.attrs for c in all_containers]