Hi guys, Huge fan of DO - been using it for a few years now on heaps of different projects. One thing I’ve noticed myself doing repeatedly on almost every small (i.e 20gb) droplet that I spin up is creating a gig or so of swap space.
Seeing as this is such a common thing to do for a lot of use cases (i.e running passenger or unicorn on a 512mb ram droplet) would you consider adding an option to the “create droplet” wizard that allows you to automatically create / turn on swap of a certain size?
Cheers, Nic
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
We do have this feature on some one-click applications (where a swap file is automatically created on smaller droplets) and some distributions like FreeBSD include a swap partition by default. You can add a swap file at creation by using the following script in user-data on the create page:
This will create a 1GB swap file as soon as your droplet boots for the first time and add it to your fstab to be automatically used on each subsequent boot.
We do have this feature on some one-click applications (where a swap file is automatically created on smaller droplets) and some distributions like FreeBSD include a swap partition by default. You can add a swap file at creation by using the following script in user-data on the create page:
This will create a 1GB swap file as soon as your droplet boots for the first time and add it to your fstab to be automatically used on each subsequent boot.
If you are creating a droplet using the digitalocean docker-machine driver, put this unit in your cloud-config file (the one you provide to the --digitalocean-userdata parameter)