We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08ceeea commit aad7200Copy full SHA for aad7200
src/cloud/digitalocean/provisioner.ts
@@ -326,7 +326,12 @@ class Provisioner {
326
name: name,
327
region: region,
328
size: "512mb",
329
- image: "ubuntu-14-04-x64",
+ // 'docker' is a slug name, a.k.a. application image, a.k.a. one-click app.
330
+ // The full list of available slugs is available only through the API, e.g.:
331
+ // this.doRequest_("GET", "images?type=application&per_page=50").then((resp: any) => {
332
+ // console.log('available application images: ' + JSON.stringify(resp, undefined, 2));
333
+ // });
334
+ image: 'docker',
335
ssh_keys: [ this.state_.cloud.ssh.id ]
336
}));
337
// If missing, create the droplet
0 commit comments