Report this

What is the reason for this report?

How do i create a new droplet from a saved snapshot using doctl cmdline tool?

Posted on October 8, 2017

I was trying to create a droplet using a snapshot that I created from an existing droplet. While I can do it from the Web UI, I seem to be struggling with it using the “droplet create” command, since the snapshot does not come with an “image slug”.

Bottom line, can I create a new droplet using a saved snapshot using doctl?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

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.

While only public images have “slugs,” all images have an ID. You can list all of your snapshots and backups using:

doctl compute image list-user

The output will look like:

ID         Name          Type            Distribution    Slug    Public    Min Disk
5812605     foobar         snapshot    Ubuntu                       false       30

This will provide the ID for the image as well. From there, you can create as normal using the image’s ID for the --image argument. E.g.:

doctl compute droplet create --region nyc3 --image 5812605 --size 8gb foobar

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.