Skip to content

Instantly share code, notes, and snippets.

@sumardi
Created August 11, 2015 19:52
Show Gist options
  • Select an option

  • Save sumardi/1c2f8a5be3e1ef43d758 to your computer and use it in GitHub Desktop.

Select an option

Save sumardi/1c2f8a5be3e1ef43d758 to your computer and use it in GitHub Desktop.
Fixing composer memory_limit on DigitalOcean droplet
cd /var
touch swap.img
chmod 600 swap.img
dd if=/dev/zero of=/var/swap.img bs=1024k count=1000
mkswap /var/swap.img
swapon /var/swap.img
free
memory_limit = -1
@chevectra87
Copy link
Copy Markdown

chevectra87 commented Jul 26, 2016

Greate!
Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment