đŸŗ Docker RISC-V64 APT Repository

RISC-V64 Debian Trixie Docker 28.x

Official APT repository for Docker Engine on RISC-V64 architecture. Built from upstream moby releases with native RISC-V64 compilation.

đŸ“Ļ Package Name: docker.io (standard Debian package name)
đŸ—ī¸ Architecture: riscv64
📍 Repository: gounthar/docker-for-riscv64

🚀 Quick Installation

# Import the GPG key
curl -fsSL https://gounthar.github.io/docker-for-riscv64/docker-riscv64.gpg.key | \
  sudo gpg --dearmor -o /usr/share/keyrings/docker-riscv64.gpg

# Add repository with signed-by key
echo "deb [arch=riscv64 signed-by=/usr/share/keyrings/docker-riscv64.gpg] https://gounthar.github.io/docker-for-riscv64 trixie main" | \
  sudo tee /etc/apt/sources.list.d/docker-riscv64.list

# Update package list
sudo apt-get update

# Install docker.io
sudo apt-get install docker.io

# Add your user to docker group
sudo usermod -aG docker $USER

# Enable and start service
sudo systemctl enable --now docker
âš ī¸ Important: Log out and back in for group changes to take effect, then test with: docker run hello-world

📋 What's Included

The docker.io package includes the complete Docker runtime stack:

🔄 Updates

The repository is automatically updated when new Docker releases are published. Update your system regularly:

sudo apt-get update && sudo apt-get upgrade

💾 Alternative: Direct .deb Download

You can also download and install the .deb package directly from GitHub releases:

# Download latest release
wget https://github.com/gounthar/docker-for-riscv64/releases/latest/download/docker.io_VERSION_riscv64.deb

# Install
sudo dpkg -i docker.io_*.deb
sudo apt-get install -f

📖 Documentation

â„šī¸ About

This is an unofficial build of Docker Engine specifically for RISC-V64 systems. Built natively on BananaPi F3 hardware from official moby releases.

Maintainer: Bruno Verachten (@gounthar)
License: Apache 2.0 (same as Docker/moby)


Generated from apt-repo branch â€ĸ Powered by reprepro â€ĸ Hosted on GitHub Pages