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

From OnnoWiki
Jump to navigation Jump to search
Line 8: Line 8:
 
  Core 2
 
  Core 2
  
 +
==Basic==
  
 +
sudo su
 +
apt update
 +
apt -y install net-tools
  
 +
==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
  
  

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

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