Skip to content

Alpine Linux

Install Trident on Alpine Linux using APK.

Automatic Setup

The repository setup script handles everything:

curl -sSL https://pkg.trident-cache.com/setup | sudo sh

Then install:

sudo apk add trident

Manual Setup

1. Import the signing key

sudo mkdir -p /etc/apk/keys
sudo curl -fsSL https://pkg.trident-cache.com/gpg \
  -o /etc/apk/keys/packages@trident.dev.rsa.pub

2. Add the repository

Append the repository URL to /etc/apk/repositories:

echo "https://pkg.trident-cache.com/apk/$(uname -m)" \
  | sudo tee -a /etc/apk/repositories

3. Install

sudo apk update
sudo apk add trident

Verify Installation

trident --version

Next Steps