Metadata-Version: 2.1
Name: repo2podman
Version: 0.2.0
Summary: Repo2docker Podman extension
Home-page: https://github.com/manics/repo2podman
Author: Simon Li
License: BSD
Project-URL: Documentation, https://repo2docker.readthedocs.io
Keywords: reproducible science environments docker
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jupyter-repo2docker>=2021.08.0
Requires-Dist: docker-image-py

# repo2podman

[![Build Status](https://github.com/manics/repo2podman/actions/workflows/build.yml/badge.svg)](https://github.com/manics/repo2podman/actions/workflows/build.yml)
[![Latest PyPI version](https://img.shields.io/pypi/v/repo2podman?logo=pypi)](https://pypi.python.org/pypi/repo2podman)

`repo2podman` is a plugin for [repo2docker](http://repo2docker.readthedocs.io) that lets you use [Podman](https://podman.io/) instead of Docker.

Requires Podman 3+.

## Installation

    pip install repo2podman

## Running

Simply include `--engine podman` in the arguments to `repo2docker`:

    repo2docker --engine podman <repository>

### Using a different Podman executable

repo2podman uses the `podman` command line executable, so it should be possible to substitute any other docker/podman compatible command line tool.

For example, `nerdctl`:

    repo2docker --engine podman --PodmanEngine.podman_executable=nerdctl <repository>

`podman-remote`:

    export CONTAINER_HOST=ssh://<user>@<host>/home/<user>/podman.sock
    export CONTAINER_SSHKEY=$HOME/.ssh/<ssh-private-key>
    repo2docker --engine=podman --PodmanEngine.podman_executable=podman-remote <repository>
