Skip to content

Commit

Permalink
align ghcr image name, update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoltzsche committed Sep 28, 2021
1 parent b84684b commit d6ec937
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: |
set -eu
GITHUB_IMAGE_REPO=ghcr.io/$GITHUB_REPO/podman
GITHUB_IMAGE_REPO=ghcr.io/mgoltzsche/podman
GITHUB_IMAGE_REPO=$(echo $GITHUB_IMAGE_REPO | tr '[A-Z]' '[a-z]')
DOCKERHUB_IMAGE_REPO=docker.io/mgoltzsche/podman
Expand Down Expand Up @@ -78,7 +78,6 @@ jobs:
BUILDX_OUTPUT: type=registry
PLATFORM: linux/arm64/v8,linux/amd64
GITHUB_REF: ${{ github.ref }}
GITHUB_REPO: ${{ github.repository }}

- name: Create release
if: github.ref != 'refs/heads/master'
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# podman binaries and container images ![GitHub workflow badge](https://github.com/mgoltzsche/podman-static/workflows/Release/badge.svg)

This project provides alpine-based podman container images and statically linked (rootless) podman binaries for linux-amd64 along with its dependencies _(without systemd support)_:
This project provides alpine-based podman container images and statically linked (rootless) podman binaries for linux/amd64 and linux/arm64/v8 machines along with its dependencies _(without systemd support)_:
* [podman](https://github.com/containers/podman)
* [runc](https://github.com/opencontainers/runc/) or [crun](https://github.com/containers/crun)
* [conmon](https://github.com/containers/conmon)
Expand Down Expand Up @@ -33,6 +33,8 @@ _Within the container `docker` is linked to `podman` to support applications tha

## Binary installation on a host

_In case you're using an arm64 machine (e.g. a Raspberry Pi), you need to substitute "amd64" with "arm64" within the commands below to make the installation work for you._

Download the statically linked binaries of podman and its dependencies:
```sh
curl -fsSL -o podman-linux-amd64.tar.gz https://github.com/mgoltzsche/podman-static/releases/latest/download/podman-linux-amd64.tar.gz
Expand Down Expand Up @@ -65,7 +67,7 @@ To support applications that use the `docker` command you may want to link it to
sudo ln -s /usr/local/bin/podman /usr/local/bin/docker
```

Before updating binaries on your host please terminate all corresponding processes.
Before updating binaries on your host please terminate all corresponding processes.

### Binary usage example

Expand Down

0 comments on commit d6ec937

Please sign in to comment.