Docs
/
Installation
/

Installing Docker Engine

Installing Docker Engine

Koios runs as a Docker container, so Docker Engine must be installed on the host machine. This page covers the essentials.

Install Docker Engine

Follow the official Docker documentation to install Docker Engine on Ubuntu:

  1. Set up Docker's apt repository
  2. Install the docker-ce package
  3. Verify the installation

Refer to the official Docker Engine installation guide for Ubuntu for detailed, up-to-date instructions.

Post-Install: Add Your User to the Docker Group

By default, Docker commands require sudo. To run Docker as your regular user:

sudo usermod -aG docker $USER

Log out and back in for the group change to take effect.

Verify the Installation

docker --version
docker run hello-world

If both commands succeed, Docker is ready.

What's Next