The AUR package docker-pushrm
Go to file
2024-05-18 10:04:21 +00:00
.drone.yml chore(deps): update docker.io/appleboy/drone-git-push docker tag to v1.1.0 2024-05-18 10:04:00 +00:00
.editorconfig fix(ci): init 2023-12-02 23:16:44 +01:00
.gitignore fix(ci): init 2023-12-02 23:16:44 +01:00
.markdownlint.yaml fix(ci): init 2023-12-02 23:16:44 +01:00
.SRCINFO fix: remove obsolete mkdir command 2022-07-19 23:31:07 +02:00
PKGBUILD fix: remove obsolete mkdir command 2022-07-19 23:31:07 +02:00
README.md fix(ci): init 2023-12-02 23:16:44 +01:00
renovate.json fix(ci): init 2023-12-02 23:16:44 +01:00

docker-pushrm

AUR version Build Status AUR votes

This repository contains build files to build the Arch Linux package docker-pushrm. Instead of building the package yourself, it can also be obtained from the following private repository. More detailed are described here.

Build

Clone this repository and use makepkg to build the package by yourself. For example:

git clone https://aur.archlinux.org/docker-pushrm.git
cd docker-pushrm
makepkg

Yay

The build files are also available via AUR and can be installed via an AUR helper like yay.

yay --sync --aur docker-pushrm

Obtaining pre-built packages from a repository

Instead of building the packages locally, it is also possible to configure an additional repository to install the package directly via pacman. The following commands are used to create the repository, configure the GPG key to verify the packages and install the package:

# Create drop-in directory
sudo mkdir --parents /etc/pacman.d/repos

# Create configuration of the repository 'volker.raschek'
sudo tee /etc/pacman.d/repos/volker.raschek.conf > /dev/null <<'EOF'
[volker.raschek]
SigLevel = PackageRequired TrustedOnly
Include = /etc/pacman.d/repos/volker.raschek.list
EOF

# Create mirror list of the repository 'volker.raschek'
sudo tee /etc/pacman.d/repos/volker.raschek.list > /dev/null <<'EOF'
Server = https://aur.cryptic.systems/$repo/$arch
EOF

# Import gpg key of the repository 'volker.raschek'
sudo pacman-key --keyserver hkps://keys.openpgp.org --recv-keys 9B146D11A9ED6CA7E279EB1A852BCC170D81A982

# Extend existing pacman configuration of the repository 'volker.raschek'
sudo echo "Include = /etc/pacman.d/repos/*.conf" >> /etc/pacman.conf

# Update pacman cache
sudo pacman --sync --refresh

# Install the package and receive updates directly via pacman :)
sudo pacman --sync docker-pushrm