podman/contrib/podmanremoteimage
Praveen Kumar 8c627dfb57 Contrib: Add containerfile to create podman-remote binary image
Try to partial address #14664

Signed-off-by: Praveen Kumar <kumarpraveen.nitdgp@gmail.com>
2022-09-26 10:34:13 +05:30
..
Containerfile Contrib: Add containerfile to create podman-remote binary image 2022-09-26 10:34:13 +05:30
README.md Contrib: Add containerfile to create podman-remote binary image 2022-09-26 10:34:13 +05:30

README.md

podman-remote-images

Overview

This directory contains the containerfile for creating a container image which consist podman-remote binary for each platform (win/linux/mac).

Users can copy those binaries onto the specific platforms using following instructions

  • For Windows binary
$ podman cp $(podman create --name remote-temp quay.io/containers/podman-remote-artifacts:latest):/windows/podman.exe . && podman rm remote-temp
  • For Linux binary
$ podman cp $(podman create --name remote-temp quay.io/containers/podman-remote-artifacts:latest):/podman-remote-static . && podman rm remote-temp
  • For Mac binary
$ podman cp $(podman create --name remote-temp quay.io/containers/podman-remote-artifacts:latest):/darwin/podman . && podman rm remote-temp