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.
docker.io (standard Debian package name)riscv64# 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
docker run hello-world
The docker.io package includes the complete Docker runtime stack:
The repository is automatically updated when new Docker releases are published. Update your system regularly:
sudo apt-get update && sudo apt-get upgrade
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
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