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

From OnnoWiki
Jump to navigation Jump to search
Line 27: Line 27:
 
==Referensi==
 
==Referensi==
  
 +
* https://docs.ctfd.io/docs/deployment/installation
 
* https://github.com/CTFd/CTFd
 
* https://github.com/CTFd/CTFd
 
* https://www.h4k-it.com/installing-and-configuring-ctfd/
 
* https://www.h4k-it.com/installing-and-configuring-ctfd/

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