John November 23, 2025 0

Prerequisites

  • You need to have Sudo installed1
  • You need to have Docker installed2
  • You need to have curl installed3

How to install CasaOS

Bash
curl -fsSL https://get.casaos.io | sudo bash

How to make CasaOS compatible with Docker

Bash
sudo mkdir -p /etc/systemd/system/docker.service.d
sudo nano /etc/systemd/system/docker.service.d/override.conf

then fill in the following:

Bash
[Service]
Environment=DOCKER_MIN_API_VERSION=1.24
Bash
sudo systemctl daemon-reload
sudo systemctl restart docker
  1. To install Sudo you may follow this guide ↩︎
  2. You can see if you have Docker installed with docker –version. If it is not installed you may follow this guide to install it. ↩︎
  3. If it is not installed you can run sudo apt install curl ↩︎

Category: 

Leave a Comment