-
Notifications
You must be signed in to change notification settings - Fork 0
EC2 guide for minimize cost
Orange banana edited this page Mar 4, 2026
·
1 revision
- swap memory
sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
- Install Docker & Docker Compose
sudo apt update && sudo apt install -y docker.io docker-compose-v2
sudo usermod -aG docker ubuntu
- Install Git
sudo apt install -y git
- check
free -h # Swap이 2G로 잡혀있는지 확인
docker --version # Docker 설치 확인
git --version # Git 설치 확인