config¶
读取 containers.conf 文件。
- class PodmanConfig(path: str | None = None)[source]¶
基类:
object
PodmanConfig 提供了 containers.conf 文件的表示。
从用户的 XDG_CONFIG_HOME 读取 Podman 配置。
- property active_service¶
返回活动连接。
- 类型:
Optional[ServiceConnection]
- property id¶
返回 container.conf 的 Path()。
- 类型:
路径
- property services¶
返回服务连接列表。
示例
podman_config = PodmanConfig() address = podman_config.services[“testing”] print(f”Testing service address {address}”)
- 类型:
Dict[str, ServiceConnection]