Skip to content

Instantly share code, notes, and snippets.

View chrismessiah's full-sized avatar

Christian Abdelmassih chrismessiah

View GitHub Profile
@chrismessiah
chrismessiah / docker-demo.sh
Last active May 14, 2020 18:03
Quick demo of docker #fkon2020
#!/bin/bash
# add swap
SWAP_SIZE=10G
fallocate -l $SWAP_SIZE /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
free -h
echo '/swapfile none swap sw 0 0' | tee -a /etc/fstab