Metadata-Version: 2.1
Name: ciman
Version: 0.0.5
Summary: Container image management Python library and client
Home-page: https://github.com/joaompinto/ciman
Author: João Pinto
Author-email: lamego.pinto@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx
Requires-Dist: rich
Requires-Dist: typer

# CIMAN

**C**ontainer **I**mage **MAN**ager

![PyPI - License](https://img.shields.io/pypi/l/ciman)
![PyPI](https://img.shields.io/pypi/v/ciman)
![PyPI - Downloads](https://img.shields.io/pypi/dm/ciman)

## About

This package provides a **C**ontainer **I**mage **MAN**agement Python library and command line utility

## Requirements
Python 3.6+


## Install

```bash
pip install ciman
```

## How to use (command ine tool)
```bash
# show info for the bash image on github
ciman info bash

# show info for the bash image from the microsoft registry
ciman info mcr.microsoft.com/dotnet/samples

# show tags for an image
ciman tags mcr.microsoft.com/dotnet/samples

```

## Environment variables

- DOCKER_REGISTRY: name of the docker registry to use for images names not containing a registry prefix (default: registry-1.docker.io)
- SSL_CERT_FILE: load CA certificate from the specified file instead of the default location


