Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manics/repo2podman
A repo2docker plugin that lets you use Podman instead of Docker
https://github.com/manics/repo2podman
jupyter jupyterhub podman repo2docker
Last synced: 2 months ago
JSON representation
A repo2docker plugin that lets you use Podman instead of Docker
- Host: GitHub
- URL: https://github.com/manics/repo2podman
- Owner: manics
- License: bsd-3-clause
- Created: 2020-02-14T13:23:21.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-07T18:23:50.000Z (3 months ago)
- Last Synced: 2024-10-09T08:23:09.017Z (3 months ago)
- Topics: jupyter, jupyterhub, podman, repo2docker
- Language: Python
- Size: 200 KB
- Stars: 5
- Watchers: 3
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
### 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
`podman-remote`:
export CONTAINER_HOST=ssh://@/home//podman.sock
export CONTAINER_SSHKEY=$HOME/.ssh/
repo2docker --engine=podman --PodmanEngine.podman_executable=podman-remote