From e53b1ec94e1fb4436c42030fdc0756a7c76cd1c5 Mon Sep 17 00:00:00 2001 From: Puru <5674762+tuladhar@users.noreply.github.com> Date: Wed, 28 May 2025 16:34:14 +0545 Subject: [PATCH] feat: add one-liner docker installer --- docs/self-hosting/installation/index.md | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/docs/self-hosting/installation/index.md b/docs/self-hosting/installation/index.md index fb3e794..040c23c 100644 --- a/docs/self-hosting/installation/index.md +++ b/docs/self-hosting/installation/index.md @@ -17,20 +17,7 @@ If you use Ubuntu, you can install Docker with the commands below: Click to see Ubuntu docker installation commands ```shell - # Add Docker's official GPG key: - sudo apt-get update -qqy - sudo apt-get install ca-certificates curl -qqy - sudo install -m 0755 -d /etc/apt/keyrings - sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc - sudo chmod a+r /etc/apt/keyrings/docker.asc - - # Add the repository to Apt sources: - echo \ - "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ - $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ - sudo tee /etc/apt/sources.list.d/docker.list > /dev/null - sudo apt-get update -qqy - sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin -qqy + curl -fsSL https://get.docker.com | sh - ```