Difference between revisions of "CTF: Instalasi CTFd di Ubuntu 22.04 dengan docker"

From OnnoWiki
Jump to navigation Jump to search
Line 14: Line 14:
 
  apt -y install net-tools
 
  apt -y install net-tools
  
==Docker==
+
==Install Docker==
  
 
  apt -y install curl
 
  apt -y install curl
Line 24: Line 24:
 
  sudo apt install -y docker-ce
 
  sudo apt install -y docker-ce
 
  sudo systemctl status docker
 
  sudo systemctl status docker
 
 
  
 
==Referensi==
 
==Referensi==

Revision as of 11:51, 29 January 2023

Sumber: https://github.com/CTFd/CTFd

Spec:

VirtualBox
Ubuntu 22.04
Memory 3G
Core 2

Basic

sudo su
apt update
apt -y install net-tools

Install Docker

apt -y install curl
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 7EA0A9C3F273FCD8
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
apt-cache policy docker-ce
sudo apt install -y docker-ce
sudo systemctl status docker

Referensi