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

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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.
Accepted Answer
Workaround:
docker-machine create \
--driver digitalocean \
--digitalocean-access-token $DOTOKEN \
--engine-install-url "https://releases.rancher.com/install-docker/19.03.9.sh" \
name;
Turns out, the issue is with the new Docker version. You can try the older version by supplying a URL from which the Docker Engine can be downloaded like this:
docker-machine create [other opts] --engine-install-url==https://releases.rancher.com/install-docker/19.03.9.sh
Yep, the same problem today
docker-machine create --driver digitalocean --digitalocean-image ubuntu-18-04-x64 --digitalocean-size s-1vcpu-1gb --digitalocean-region ams3 --digitalocean-access-token token name