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: 9 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 (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-08-12T08:51:40.000Z (10 months ago)
- Last Synced: 2025-08-12T10:29:35.563Z (10 months ago)
- Topics: jupyter, jupyterhub, podman, repo2docker
- Language: Python
- Size: 230 KB
- Stars: 4
- Watchers: 2
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# repo2podman
[](https://github.com/manics/repo2podman/actions/workflows/build.yml)
[](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