summaryrefslogtreecommitdiff
path: root/contrib/podmanremoteimage/README.md
blob: e43df9c64248db6d64e9414ee3acf048e3ce5cd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
```bash
$ podman cp $(podman create --name remote-temp quay.io/containers/podman-remote-artifacts:latest):/windows/podman.exe . && podman rm remote-temp
```

- For Linux binary
```bash
$ podman cp $(podman create --name remote-temp quay.io/containers/podman-remote-artifacts:latest):/podman-remote-static . && podman rm remote-temp
```

- For Mac binary
```bash
$ podman cp $(podman create --name remote-temp quay.io/containers/podman-remote-artifacts:latest):/darwin/podman . && podman rm remote-temp
```