Conduit Setup

Step-by-step guide to install and manage Conduit with Docker

APT DNF/YUM Pacman

Installation

Follow these three steps to get Conduit running on your computer.

1

Install Docker

sudo apt update && sudo apt install -y curl ca-certificates curl -fsSL https://get.docker.com | sudo sh sudo usermod -aG docker $USER && newgrp docker
2

Download Conduit

docker pull ghcr.io/ssmirr/conduit/conduit:latest
3

Start Conduit

docker run -d --name conduit --network host \ -v conduit-data:/home/conduit/data \ --restart unless-stopped \ ghcr.io/ssmirr/conduit/conduit:latest start -b 40 -m 1000
Done! Conduit is now running.

Common Commands

View Logs
docker logs -f conduit
Check Status
docker ps
Stop
docker stop conduit
Start Again
docker start conduit
Remove
docker rm -f conduit
Reset Everything
docker volume rm conduit-data
Warning: Resetting data will delete everything. Only do this if needed.