heroku 10.12.0 → 10.13.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commands/container/push.js +1 -1
- package/lib/commands/status.js +150 -14
- package/lib/lib/container/docker_helper.d.ts +1 -1
- package/lib/lib/container/docker_helper.js +13 -2
- package/lib/lib/status/util.d.ts +1 -1
- package/lib/lib/status/util.js +8 -9
- package/oclif.manifest.json +474 -474
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -2227,15 +2227,56 @@
|
|
|
2227
2227
|
"whoami.js"
|
|
2228
2228
|
]
|
|
2229
2229
|
},
|
|
2230
|
-
"
|
|
2230
|
+
"authorizations:create": {
|
|
2231
2231
|
"aliases": [],
|
|
2232
2232
|
"args": {},
|
|
2233
|
-
"description": "create
|
|
2234
|
-
"
|
|
2233
|
+
"description": "create a new OAuth authorization",
|
|
2234
|
+
"examples": [
|
|
2235
|
+
"$ heroku authorizations:create --description \"For use with Anvil\""
|
|
2236
|
+
],
|
|
2237
|
+
"flags": {
|
|
2238
|
+
"description": {
|
|
2239
|
+
"char": "d",
|
|
2240
|
+
"description": "set a custom authorization",
|
|
2241
|
+
"name": "description",
|
|
2242
|
+
"hasDynamicHelp": false,
|
|
2243
|
+
"multiple": false,
|
|
2244
|
+
"type": "option"
|
|
2245
|
+
},
|
|
2246
|
+
"short": {
|
|
2247
|
+
"char": "S",
|
|
2248
|
+
"description": "only output token",
|
|
2249
|
+
"name": "short",
|
|
2250
|
+
"allowNo": false,
|
|
2251
|
+
"type": "boolean"
|
|
2252
|
+
},
|
|
2253
|
+
"json": {
|
|
2254
|
+
"char": "j",
|
|
2255
|
+
"description": "output in json format",
|
|
2256
|
+
"name": "json",
|
|
2257
|
+
"allowNo": false,
|
|
2258
|
+
"type": "boolean"
|
|
2259
|
+
},
|
|
2260
|
+
"scope": {
|
|
2261
|
+
"char": "s",
|
|
2262
|
+
"description": "set custom OAuth scopes",
|
|
2263
|
+
"name": "scope",
|
|
2264
|
+
"hasDynamicHelp": false,
|
|
2265
|
+
"multiple": false,
|
|
2266
|
+
"type": "option"
|
|
2267
|
+
},
|
|
2268
|
+
"expires-in": {
|
|
2269
|
+
"char": "e",
|
|
2270
|
+
"description": "set expiration in seconds (default no expiration)",
|
|
2271
|
+
"name": "expires-in",
|
|
2272
|
+
"hasDynamicHelp": false,
|
|
2273
|
+
"multiple": false,
|
|
2274
|
+
"type": "option"
|
|
2275
|
+
}
|
|
2276
|
+
},
|
|
2235
2277
|
"hasDynamicHelp": false,
|
|
2236
|
-
"hidden": true,
|
|
2237
2278
|
"hiddenAliases": [],
|
|
2238
|
-
"id": "
|
|
2279
|
+
"id": "authorizations:create",
|
|
2239
2280
|
"pluginAlias": "heroku",
|
|
2240
2281
|
"pluginName": "heroku",
|
|
2241
2282
|
"pluginType": "core",
|
|
@@ -2244,32 +2285,29 @@
|
|
|
2244
2285
|
"relativePath": [
|
|
2245
2286
|
"lib",
|
|
2246
2287
|
"commands",
|
|
2247
|
-
"
|
|
2288
|
+
"authorizations",
|
|
2248
2289
|
"create.js"
|
|
2249
2290
|
]
|
|
2250
2291
|
},
|
|
2251
|
-
"
|
|
2292
|
+
"authorizations": {
|
|
2252
2293
|
"aliases": [],
|
|
2253
|
-
"args": {
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
}
|
|
2259
|
-
},
|
|
2260
|
-
"description": "autocomplete diagnostic",
|
|
2294
|
+
"args": {},
|
|
2295
|
+
"description": "list OAuth authorizations",
|
|
2296
|
+
"examples": [
|
|
2297
|
+
"$ heroku authorizations"
|
|
2298
|
+
],
|
|
2261
2299
|
"flags": {
|
|
2262
|
-
"
|
|
2263
|
-
"
|
|
2264
|
-
"
|
|
2300
|
+
"json": {
|
|
2301
|
+
"char": "j",
|
|
2302
|
+
"description": "output in json format",
|
|
2303
|
+
"name": "json",
|
|
2265
2304
|
"allowNo": false,
|
|
2266
2305
|
"type": "boolean"
|
|
2267
2306
|
}
|
|
2268
2307
|
},
|
|
2269
2308
|
"hasDynamicHelp": false,
|
|
2270
|
-
"hidden": true,
|
|
2271
2309
|
"hiddenAliases": [],
|
|
2272
|
-
"id": "
|
|
2310
|
+
"id": "authorizations",
|
|
2273
2311
|
"pluginAlias": "heroku",
|
|
2274
2312
|
"pluginName": "heroku",
|
|
2275
2313
|
"pluginType": "core",
|
|
@@ -2278,38 +2316,32 @@
|
|
|
2278
2316
|
"relativePath": [
|
|
2279
2317
|
"lib",
|
|
2280
2318
|
"commands",
|
|
2281
|
-
"
|
|
2282
|
-
"
|
|
2319
|
+
"authorizations",
|
|
2320
|
+
"index.js"
|
|
2283
2321
|
]
|
|
2284
2322
|
},
|
|
2285
|
-
"
|
|
2323
|
+
"authorizations:info": {
|
|
2286
2324
|
"aliases": [],
|
|
2287
2325
|
"args": {
|
|
2288
|
-
"
|
|
2289
|
-
"description": "
|
|
2290
|
-
"name": "
|
|
2291
|
-
"required":
|
|
2326
|
+
"id": {
|
|
2327
|
+
"description": "ID of the authorization",
|
|
2328
|
+
"name": "id",
|
|
2329
|
+
"required": true
|
|
2292
2330
|
}
|
|
2293
2331
|
},
|
|
2294
|
-
"description": "
|
|
2295
|
-
"examples": [
|
|
2296
|
-
"$ heroku autocomplete",
|
|
2297
|
-
"$ heroku autocomplete bash",
|
|
2298
|
-
"$ heroku autocomplete zsh",
|
|
2299
|
-
"$ heroku autocomplete --refresh-cache"
|
|
2300
|
-
],
|
|
2332
|
+
"description": "show an existing OAuth authorization",
|
|
2301
2333
|
"flags": {
|
|
2302
|
-
"
|
|
2303
|
-
"char": "
|
|
2304
|
-
"description": "
|
|
2305
|
-
"name": "
|
|
2334
|
+
"json": {
|
|
2335
|
+
"char": "j",
|
|
2336
|
+
"description": "output in json format",
|
|
2337
|
+
"name": "json",
|
|
2306
2338
|
"allowNo": false,
|
|
2307
2339
|
"type": "boolean"
|
|
2308
2340
|
}
|
|
2309
2341
|
},
|
|
2310
2342
|
"hasDynamicHelp": false,
|
|
2311
2343
|
"hiddenAliases": [],
|
|
2312
|
-
"id": "
|
|
2344
|
+
"id": "authorizations:info",
|
|
2313
2345
|
"pluginAlias": "heroku",
|
|
2314
2346
|
"pluginName": "heroku",
|
|
2315
2347
|
"pluginType": "core",
|
|
@@ -2318,34 +2350,56 @@
|
|
|
2318
2350
|
"relativePath": [
|
|
2319
2351
|
"lib",
|
|
2320
2352
|
"commands",
|
|
2321
|
-
"
|
|
2322
|
-
"
|
|
2353
|
+
"authorizations",
|
|
2354
|
+
"info.js"
|
|
2323
2355
|
]
|
|
2324
2356
|
},
|
|
2325
|
-
"
|
|
2326
|
-
"aliases": [
|
|
2357
|
+
"authorizations:revoke": {
|
|
2358
|
+
"aliases": [
|
|
2359
|
+
"authorizations:revoke",
|
|
2360
|
+
"authorizations:destroy"
|
|
2361
|
+
],
|
|
2327
2362
|
"args": {
|
|
2328
|
-
"
|
|
2329
|
-
"
|
|
2363
|
+
"id": {
|
|
2364
|
+
"description": "ID of the authorization",
|
|
2365
|
+
"name": "id",
|
|
2366
|
+
"required": true
|
|
2330
2367
|
}
|
|
2331
2368
|
},
|
|
2332
|
-
"description": "
|
|
2333
|
-
"
|
|
2334
|
-
"
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2369
|
+
"description": "revoke OAuth authorization",
|
|
2370
|
+
"examples": [
|
|
2371
|
+
"$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb"
|
|
2372
|
+
],
|
|
2373
|
+
"flags": {},
|
|
2374
|
+
"hasDynamicHelp": false,
|
|
2375
|
+
"hiddenAliases": [],
|
|
2376
|
+
"id": "authorizations:revoke",
|
|
2377
|
+
"pluginAlias": "heroku",
|
|
2378
|
+
"pluginName": "heroku",
|
|
2379
|
+
"pluginType": "core",
|
|
2380
|
+
"strict": true,
|
|
2381
|
+
"isESM": false,
|
|
2382
|
+
"relativePath": [
|
|
2383
|
+
"lib",
|
|
2384
|
+
"commands",
|
|
2385
|
+
"authorizations",
|
|
2386
|
+
"revoke.js"
|
|
2387
|
+
]
|
|
2388
|
+
},
|
|
2389
|
+
"authorizations:rotate": {
|
|
2390
|
+
"aliases": [],
|
|
2391
|
+
"args": {
|
|
2392
|
+
"id": {
|
|
2393
|
+
"description": "ID of the authorization",
|
|
2394
|
+
"name": "id",
|
|
2395
|
+
"required": true
|
|
2343
2396
|
}
|
|
2344
2397
|
},
|
|
2398
|
+
"description": "updates an OAuth authorization token",
|
|
2399
|
+
"flags": {},
|
|
2345
2400
|
"hasDynamicHelp": false,
|
|
2346
|
-
"hidden": true,
|
|
2347
2401
|
"hiddenAliases": [],
|
|
2348
|
-
"id": "
|
|
2402
|
+
"id": "authorizations:rotate",
|
|
2349
2403
|
"pluginAlias": "heroku",
|
|
2350
2404
|
"pluginName": "heroku",
|
|
2351
2405
|
"pluginType": "core",
|
|
@@ -2354,25 +2408,53 @@
|
|
|
2354
2408
|
"relativePath": [
|
|
2355
2409
|
"lib",
|
|
2356
2410
|
"commands",
|
|
2357
|
-
"
|
|
2358
|
-
"
|
|
2411
|
+
"authorizations",
|
|
2412
|
+
"rotate.js"
|
|
2359
2413
|
]
|
|
2360
2414
|
},
|
|
2361
|
-
"
|
|
2415
|
+
"authorizations:update": {
|
|
2362
2416
|
"aliases": [],
|
|
2363
2417
|
"args": {
|
|
2364
|
-
"
|
|
2365
|
-
"description": "
|
|
2366
|
-
"name": "
|
|
2367
|
-
"required":
|
|
2418
|
+
"id": {
|
|
2419
|
+
"description": "ID of the authorization",
|
|
2420
|
+
"name": "id",
|
|
2421
|
+
"required": true
|
|
2422
|
+
}
|
|
2423
|
+
},
|
|
2424
|
+
"description": "updates an OAuth authorization",
|
|
2425
|
+
"flags": {
|
|
2426
|
+
"description": {
|
|
2427
|
+
"char": "d",
|
|
2428
|
+
"description": "set a custom authorization description",
|
|
2429
|
+
"name": "description",
|
|
2430
|
+
"hasDynamicHelp": false,
|
|
2431
|
+
"multiple": false,
|
|
2432
|
+
"type": "option"
|
|
2433
|
+
},
|
|
2434
|
+
"client-id": {
|
|
2435
|
+
"dependsOn": [
|
|
2436
|
+
"client-secret"
|
|
2437
|
+
],
|
|
2438
|
+
"description": "identifier of OAuth client to set",
|
|
2439
|
+
"name": "client-id",
|
|
2440
|
+
"hasDynamicHelp": false,
|
|
2441
|
+
"multiple": false,
|
|
2442
|
+
"type": "option"
|
|
2443
|
+
},
|
|
2444
|
+
"client-secret": {
|
|
2445
|
+
"dependsOn": [
|
|
2446
|
+
"client-id"
|
|
2447
|
+
],
|
|
2448
|
+
"description": "secret of OAuth client to set",
|
|
2449
|
+
"name": "client-secret",
|
|
2450
|
+
"hasDynamicHelp": false,
|
|
2451
|
+
"multiple": false,
|
|
2452
|
+
"type": "option"
|
|
2368
2453
|
}
|
|
2369
2454
|
},
|
|
2370
|
-
"description": "display autocomplete setup script for shell",
|
|
2371
|
-
"flags": {},
|
|
2372
2455
|
"hasDynamicHelp": false,
|
|
2373
|
-
"hidden": true,
|
|
2374
2456
|
"hiddenAliases": [],
|
|
2375
|
-
"id": "
|
|
2457
|
+
"id": "authorizations:update",
|
|
2376
2458
|
"pluginAlias": "heroku",
|
|
2377
2459
|
"pluginName": "heroku",
|
|
2378
2460
|
"pluginType": "core",
|
|
@@ -2381,8 +2463,8 @@
|
|
|
2381
2463
|
"relativePath": [
|
|
2382
2464
|
"lib",
|
|
2383
2465
|
"commands",
|
|
2384
|
-
"
|
|
2385
|
-
"
|
|
2466
|
+
"authorizations",
|
|
2467
|
+
"update.js"
|
|
2386
2468
|
]
|
|
2387
2469
|
},
|
|
2388
2470
|
"buildpacks:add": {
|
|
@@ -2714,56 +2796,15 @@
|
|
|
2714
2796
|
"versions.js"
|
|
2715
2797
|
]
|
|
2716
2798
|
},
|
|
2717
|
-
"
|
|
2799
|
+
"autocomplete:create": {
|
|
2718
2800
|
"aliases": [],
|
|
2719
2801
|
"args": {},
|
|
2720
|
-
"description": "create
|
|
2721
|
-
"
|
|
2722
|
-
"$ heroku authorizations:create --description \"For use with Anvil\""
|
|
2723
|
-
],
|
|
2724
|
-
"flags": {
|
|
2725
|
-
"description": {
|
|
2726
|
-
"char": "d",
|
|
2727
|
-
"description": "set a custom authorization",
|
|
2728
|
-
"name": "description",
|
|
2729
|
-
"hasDynamicHelp": false,
|
|
2730
|
-
"multiple": false,
|
|
2731
|
-
"type": "option"
|
|
2732
|
-
},
|
|
2733
|
-
"short": {
|
|
2734
|
-
"char": "S",
|
|
2735
|
-
"description": "only output token",
|
|
2736
|
-
"name": "short",
|
|
2737
|
-
"allowNo": false,
|
|
2738
|
-
"type": "boolean"
|
|
2739
|
-
},
|
|
2740
|
-
"json": {
|
|
2741
|
-
"char": "j",
|
|
2742
|
-
"description": "output in json format",
|
|
2743
|
-
"name": "json",
|
|
2744
|
-
"allowNo": false,
|
|
2745
|
-
"type": "boolean"
|
|
2746
|
-
},
|
|
2747
|
-
"scope": {
|
|
2748
|
-
"char": "s",
|
|
2749
|
-
"description": "set custom OAuth scopes",
|
|
2750
|
-
"name": "scope",
|
|
2751
|
-
"hasDynamicHelp": false,
|
|
2752
|
-
"multiple": false,
|
|
2753
|
-
"type": "option"
|
|
2754
|
-
},
|
|
2755
|
-
"expires-in": {
|
|
2756
|
-
"char": "e",
|
|
2757
|
-
"description": "set expiration in seconds (default no expiration)",
|
|
2758
|
-
"name": "expires-in",
|
|
2759
|
-
"hasDynamicHelp": false,
|
|
2760
|
-
"multiple": false,
|
|
2761
|
-
"type": "option"
|
|
2762
|
-
}
|
|
2763
|
-
},
|
|
2802
|
+
"description": "create autocomplete setup scripts and completion functions",
|
|
2803
|
+
"flags": {},
|
|
2764
2804
|
"hasDynamicHelp": false,
|
|
2805
|
+
"hidden": true,
|
|
2765
2806
|
"hiddenAliases": [],
|
|
2766
|
-
"id": "
|
|
2807
|
+
"id": "autocomplete:create",
|
|
2767
2808
|
"pluginAlias": "heroku",
|
|
2768
2809
|
"pluginName": "heroku",
|
|
2769
2810
|
"pluginType": "core",
|
|
@@ -2772,29 +2813,32 @@
|
|
|
2772
2813
|
"relativePath": [
|
|
2773
2814
|
"lib",
|
|
2774
2815
|
"commands",
|
|
2775
|
-
"
|
|
2816
|
+
"autocomplete",
|
|
2776
2817
|
"create.js"
|
|
2777
2818
|
]
|
|
2778
2819
|
},
|
|
2779
|
-
"
|
|
2820
|
+
"autocomplete:doctor": {
|
|
2780
2821
|
"aliases": [],
|
|
2781
|
-
"args": {
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2822
|
+
"args": {
|
|
2823
|
+
"shell": {
|
|
2824
|
+
"description": "shell type",
|
|
2825
|
+
"name": "shell",
|
|
2826
|
+
"required": false
|
|
2827
|
+
}
|
|
2828
|
+
},
|
|
2829
|
+
"description": "autocomplete diagnostic",
|
|
2786
2830
|
"flags": {
|
|
2787
|
-
"
|
|
2788
|
-
"
|
|
2789
|
-
"
|
|
2790
|
-
"name": "json",
|
|
2831
|
+
"verbose": {
|
|
2832
|
+
"description": "list completable commands",
|
|
2833
|
+
"name": "verbose",
|
|
2791
2834
|
"allowNo": false,
|
|
2792
2835
|
"type": "boolean"
|
|
2793
2836
|
}
|
|
2794
2837
|
},
|
|
2795
2838
|
"hasDynamicHelp": false,
|
|
2839
|
+
"hidden": true,
|
|
2796
2840
|
"hiddenAliases": [],
|
|
2797
|
-
"id": "
|
|
2841
|
+
"id": "autocomplete:doctor",
|
|
2798
2842
|
"pluginAlias": "heroku",
|
|
2799
2843
|
"pluginName": "heroku",
|
|
2800
2844
|
"pluginType": "core",
|
|
@@ -2803,32 +2847,38 @@
|
|
|
2803
2847
|
"relativePath": [
|
|
2804
2848
|
"lib",
|
|
2805
2849
|
"commands",
|
|
2806
|
-
"
|
|
2807
|
-
"
|
|
2850
|
+
"autocomplete",
|
|
2851
|
+
"doctor.js"
|
|
2808
2852
|
]
|
|
2809
2853
|
},
|
|
2810
|
-
"
|
|
2854
|
+
"autocomplete": {
|
|
2811
2855
|
"aliases": [],
|
|
2812
2856
|
"args": {
|
|
2813
|
-
"
|
|
2814
|
-
"description": "
|
|
2815
|
-
"name": "
|
|
2816
|
-
"required":
|
|
2857
|
+
"shell": {
|
|
2858
|
+
"description": "shell type",
|
|
2859
|
+
"name": "shell",
|
|
2860
|
+
"required": false
|
|
2817
2861
|
}
|
|
2818
2862
|
},
|
|
2819
|
-
"description": "
|
|
2863
|
+
"description": "display autocomplete installation instructions",
|
|
2864
|
+
"examples": [
|
|
2865
|
+
"$ heroku autocomplete",
|
|
2866
|
+
"$ heroku autocomplete bash",
|
|
2867
|
+
"$ heroku autocomplete zsh",
|
|
2868
|
+
"$ heroku autocomplete --refresh-cache"
|
|
2869
|
+
],
|
|
2820
2870
|
"flags": {
|
|
2821
|
-
"
|
|
2822
|
-
"char": "
|
|
2823
|
-
"description": "
|
|
2824
|
-
"name": "
|
|
2871
|
+
"refresh-cache": {
|
|
2872
|
+
"char": "r",
|
|
2873
|
+
"description": "refresh cache only (ignores displaying instructions)",
|
|
2874
|
+
"name": "refresh-cache",
|
|
2825
2875
|
"allowNo": false,
|
|
2826
2876
|
"type": "boolean"
|
|
2827
2877
|
}
|
|
2828
2878
|
},
|
|
2829
2879
|
"hasDynamicHelp": false,
|
|
2830
2880
|
"hiddenAliases": [],
|
|
2831
|
-
"id": "
|
|
2881
|
+
"id": "autocomplete",
|
|
2832
2882
|
"pluginAlias": "heroku",
|
|
2833
2883
|
"pluginName": "heroku",
|
|
2834
2884
|
"pluginType": "core",
|
|
@@ -2837,56 +2887,34 @@
|
|
|
2837
2887
|
"relativePath": [
|
|
2838
2888
|
"lib",
|
|
2839
2889
|
"commands",
|
|
2840
|
-
"
|
|
2841
|
-
"
|
|
2890
|
+
"autocomplete",
|
|
2891
|
+
"index.js"
|
|
2842
2892
|
]
|
|
2843
2893
|
},
|
|
2844
|
-
"
|
|
2845
|
-
"aliases": [
|
|
2846
|
-
"authorizations:revoke",
|
|
2847
|
-
"authorizations:destroy"
|
|
2848
|
-
],
|
|
2894
|
+
"autocomplete:options": {
|
|
2895
|
+
"aliases": [],
|
|
2849
2896
|
"args": {
|
|
2850
|
-
"
|
|
2851
|
-
"
|
|
2852
|
-
"name": "id",
|
|
2853
|
-
"required": true
|
|
2897
|
+
"completion": {
|
|
2898
|
+
"name": "completion"
|
|
2854
2899
|
}
|
|
2855
2900
|
},
|
|
2856
|
-
"description": "
|
|
2857
|
-
"
|
|
2858
|
-
"
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
"strict": true,
|
|
2868
|
-
"isESM": false,
|
|
2869
|
-
"relativePath": [
|
|
2870
|
-
"lib",
|
|
2871
|
-
"commands",
|
|
2872
|
-
"authorizations",
|
|
2873
|
-
"revoke.js"
|
|
2874
|
-
]
|
|
2875
|
-
},
|
|
2876
|
-
"authorizations:rotate": {
|
|
2877
|
-
"aliases": [],
|
|
2878
|
-
"args": {
|
|
2879
|
-
"id": {
|
|
2880
|
-
"description": "ID of the authorization",
|
|
2881
|
-
"name": "id",
|
|
2882
|
-
"required": true
|
|
2901
|
+
"description": "display arg or flag completion options (used internally by completion functions)",
|
|
2902
|
+
"flags": {
|
|
2903
|
+
"app": {
|
|
2904
|
+
"char": "a",
|
|
2905
|
+
"description": "app to run command against",
|
|
2906
|
+
"hidden": true,
|
|
2907
|
+
"name": "app",
|
|
2908
|
+
"required": false,
|
|
2909
|
+
"hasDynamicHelp": false,
|
|
2910
|
+
"multiple": false,
|
|
2911
|
+
"type": "option"
|
|
2883
2912
|
}
|
|
2884
2913
|
},
|
|
2885
|
-
"description": "updates an OAuth authorization token",
|
|
2886
|
-
"flags": {},
|
|
2887
2914
|
"hasDynamicHelp": false,
|
|
2915
|
+
"hidden": true,
|
|
2888
2916
|
"hiddenAliases": [],
|
|
2889
|
-
"id": "
|
|
2917
|
+
"id": "autocomplete:options",
|
|
2890
2918
|
"pluginAlias": "heroku",
|
|
2891
2919
|
"pluginName": "heroku",
|
|
2892
2920
|
"pluginType": "core",
|
|
@@ -2895,53 +2923,25 @@
|
|
|
2895
2923
|
"relativePath": [
|
|
2896
2924
|
"lib",
|
|
2897
2925
|
"commands",
|
|
2898
|
-
"
|
|
2899
|
-
"
|
|
2926
|
+
"autocomplete",
|
|
2927
|
+
"options.js"
|
|
2900
2928
|
]
|
|
2901
2929
|
},
|
|
2902
|
-
"
|
|
2930
|
+
"autocomplete:script": {
|
|
2903
2931
|
"aliases": [],
|
|
2904
2932
|
"args": {
|
|
2905
|
-
"
|
|
2906
|
-
"description": "
|
|
2907
|
-
"name": "
|
|
2908
|
-
"required":
|
|
2909
|
-
}
|
|
2910
|
-
},
|
|
2911
|
-
"description": "updates an OAuth authorization",
|
|
2912
|
-
"flags": {
|
|
2913
|
-
"description": {
|
|
2914
|
-
"char": "d",
|
|
2915
|
-
"description": "set a custom authorization description",
|
|
2916
|
-
"name": "description",
|
|
2917
|
-
"hasDynamicHelp": false,
|
|
2918
|
-
"multiple": false,
|
|
2919
|
-
"type": "option"
|
|
2920
|
-
},
|
|
2921
|
-
"client-id": {
|
|
2922
|
-
"dependsOn": [
|
|
2923
|
-
"client-secret"
|
|
2924
|
-
],
|
|
2925
|
-
"description": "identifier of OAuth client to set",
|
|
2926
|
-
"name": "client-id",
|
|
2927
|
-
"hasDynamicHelp": false,
|
|
2928
|
-
"multiple": false,
|
|
2929
|
-
"type": "option"
|
|
2930
|
-
},
|
|
2931
|
-
"client-secret": {
|
|
2932
|
-
"dependsOn": [
|
|
2933
|
-
"client-id"
|
|
2934
|
-
],
|
|
2935
|
-
"description": "secret of OAuth client to set",
|
|
2936
|
-
"name": "client-secret",
|
|
2937
|
-
"hasDynamicHelp": false,
|
|
2938
|
-
"multiple": false,
|
|
2939
|
-
"type": "option"
|
|
2933
|
+
"shell": {
|
|
2934
|
+
"description": "shell type",
|
|
2935
|
+
"name": "shell",
|
|
2936
|
+
"required": false
|
|
2940
2937
|
}
|
|
2941
2938
|
},
|
|
2939
|
+
"description": "display autocomplete setup script for shell",
|
|
2940
|
+
"flags": {},
|
|
2942
2941
|
"hasDynamicHelp": false,
|
|
2942
|
+
"hidden": true,
|
|
2943
2943
|
"hiddenAliases": [],
|
|
2944
|
-
"id": "
|
|
2944
|
+
"id": "autocomplete:script",
|
|
2945
2945
|
"pluginAlias": "heroku",
|
|
2946
2946
|
"pluginName": "heroku",
|
|
2947
2947
|
"pluginType": "core",
|
|
@@ -2950,8 +2950,8 @@
|
|
|
2950
2950
|
"relativePath": [
|
|
2951
2951
|
"lib",
|
|
2952
2952
|
"commands",
|
|
2953
|
-
"
|
|
2954
|
-
"
|
|
2953
|
+
"autocomplete",
|
|
2954
|
+
"script.js"
|
|
2955
2955
|
]
|
|
2956
2956
|
},
|
|
2957
2957
|
"certs:add": {
|
|
@@ -3994,113 +3994,88 @@
|
|
|
3994
3994
|
"update.js"
|
|
3995
3995
|
]
|
|
3996
3996
|
},
|
|
3997
|
-
"
|
|
3997
|
+
"container": {
|
|
3998
3998
|
"aliases": [],
|
|
3999
|
-
"args": {
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
"name": "key"
|
|
4003
|
-
}
|
|
4004
|
-
},
|
|
4005
|
-
"description": "interactively edit config vars\nThis command opens the app config in a text editor set by $VISUAL or $EDITOR.\nAny variables added/removed/changed will be updated on the app after saving and closing the file.",
|
|
4006
|
-
"examples": [
|
|
4007
|
-
"# edit with vim\n$ EDITOR=\"vim\" heroku config:edit",
|
|
4008
|
-
"# edit with emacs\n$ EDITOR=\"emacs\" heroku config:edit",
|
|
4009
|
-
"# edit with pico\n$ EDITOR=\"pico\" heroku config:edit",
|
|
4010
|
-
"# edit with atom editor\n$ VISUAL=\"atom --wait\" heroku config:edit"
|
|
4011
|
-
],
|
|
4012
|
-
"flags": {
|
|
4013
|
-
"app": {
|
|
4014
|
-
"char": "a",
|
|
4015
|
-
"description": "app to run command against",
|
|
4016
|
-
"name": "app",
|
|
4017
|
-
"required": true,
|
|
4018
|
-
"hasDynamicHelp": false,
|
|
4019
|
-
"multiple": false,
|
|
4020
|
-
"type": "option"
|
|
4021
|
-
},
|
|
4022
|
-
"remote": {
|
|
4023
|
-
"char": "r",
|
|
4024
|
-
"description": "git remote of app to use",
|
|
4025
|
-
"name": "remote",
|
|
4026
|
-
"hasDynamicHelp": false,
|
|
4027
|
-
"multiple": false,
|
|
4028
|
-
"type": "option"
|
|
4029
|
-
}
|
|
4030
|
-
},
|
|
3999
|
+
"args": {},
|
|
4000
|
+
"description": "Use containers to build and deploy Heroku apps",
|
|
4001
|
+
"flags": {},
|
|
4031
4002
|
"hasDynamicHelp": false,
|
|
4032
4003
|
"hiddenAliases": [],
|
|
4033
|
-
"id": "
|
|
4004
|
+
"id": "container",
|
|
4034
4005
|
"pluginAlias": "heroku",
|
|
4035
4006
|
"pluginName": "heroku",
|
|
4036
4007
|
"pluginType": "core",
|
|
4037
4008
|
"strict": true,
|
|
4009
|
+
"topic": "container",
|
|
4038
4010
|
"isESM": false,
|
|
4039
4011
|
"relativePath": [
|
|
4040
4012
|
"lib",
|
|
4041
4013
|
"commands",
|
|
4042
|
-
"
|
|
4043
|
-
"
|
|
4014
|
+
"container",
|
|
4015
|
+
"index.js"
|
|
4044
4016
|
]
|
|
4045
4017
|
},
|
|
4046
|
-
"
|
|
4018
|
+
"container:login": {
|
|
4047
4019
|
"aliases": [],
|
|
4048
|
-
"args": {
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
"
|
|
4020
|
+
"args": {},
|
|
4021
|
+
"description": "log in to Heroku Container Registry",
|
|
4022
|
+
"flags": {
|
|
4023
|
+
"verbose": {
|
|
4024
|
+
"char": "v",
|
|
4025
|
+
"name": "verbose",
|
|
4026
|
+
"allowNo": false,
|
|
4027
|
+
"type": "boolean"
|
|
4053
4028
|
}
|
|
4054
4029
|
},
|
|
4055
|
-
"
|
|
4056
|
-
"
|
|
4057
|
-
"
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
"
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
"
|
|
4078
|
-
"name": "
|
|
4030
|
+
"hasDynamicHelp": false,
|
|
4031
|
+
"hiddenAliases": [],
|
|
4032
|
+
"id": "container:login",
|
|
4033
|
+
"pluginAlias": "heroku",
|
|
4034
|
+
"pluginName": "heroku",
|
|
4035
|
+
"pluginType": "core",
|
|
4036
|
+
"strict": true,
|
|
4037
|
+
"topic": "container",
|
|
4038
|
+
"isESM": false,
|
|
4039
|
+
"relativePath": [
|
|
4040
|
+
"lib",
|
|
4041
|
+
"commands",
|
|
4042
|
+
"container",
|
|
4043
|
+
"login.js"
|
|
4044
|
+
]
|
|
4045
|
+
},
|
|
4046
|
+
"container:logout": {
|
|
4047
|
+
"aliases": [],
|
|
4048
|
+
"args": {},
|
|
4049
|
+
"description": "log out from Heroku Container Registry",
|
|
4050
|
+
"flags": {
|
|
4051
|
+
"verbose": {
|
|
4052
|
+
"char": "v",
|
|
4053
|
+
"name": "verbose",
|
|
4079
4054
|
"allowNo": false,
|
|
4080
4055
|
"type": "boolean"
|
|
4081
4056
|
}
|
|
4082
4057
|
},
|
|
4083
4058
|
"hasDynamicHelp": false,
|
|
4084
4059
|
"hiddenAliases": [],
|
|
4085
|
-
"id": "
|
|
4060
|
+
"id": "container:logout",
|
|
4086
4061
|
"pluginAlias": "heroku",
|
|
4087
4062
|
"pluginName": "heroku",
|
|
4088
4063
|
"pluginType": "core",
|
|
4089
|
-
"strict":
|
|
4090
|
-
"
|
|
4091
|
-
"example": "$ heroku config:get RAILS_ENV\nproduction",
|
|
4064
|
+
"strict": true,
|
|
4065
|
+
"topic": "container",
|
|
4092
4066
|
"isESM": false,
|
|
4093
4067
|
"relativePath": [
|
|
4094
4068
|
"lib",
|
|
4095
4069
|
"commands",
|
|
4096
|
-
"
|
|
4097
|
-
"
|
|
4070
|
+
"container",
|
|
4071
|
+
"logout.js"
|
|
4098
4072
|
]
|
|
4099
4073
|
},
|
|
4100
|
-
"
|
|
4074
|
+
"container:pull": {
|
|
4101
4075
|
"aliases": [],
|
|
4102
4076
|
"args": {},
|
|
4103
|
-
"description": "
|
|
4077
|
+
"description": "pulls an image from an app's process type",
|
|
4078
|
+
"examples": "\n $ heroku container:pull web # Pulls the web image from the app\n $ heroku container:pull web worker # Pulls both the web and worker images from the app\n $ heroku container:pull web:latest # Pulls the latest tag from the web image",
|
|
4104
4079
|
"flags": {
|
|
4105
4080
|
"app": {
|
|
4106
4081
|
"char": "a",
|
|
@@ -4119,42 +4094,42 @@
|
|
|
4119
4094
|
"multiple": false,
|
|
4120
4095
|
"type": "option"
|
|
4121
4096
|
},
|
|
4122
|
-
"
|
|
4123
|
-
"char": "
|
|
4124
|
-
"
|
|
4125
|
-
"name": "shell",
|
|
4126
|
-
"allowNo": false,
|
|
4127
|
-
"type": "boolean"
|
|
4128
|
-
},
|
|
4129
|
-
"json": {
|
|
4130
|
-
"char": "j",
|
|
4131
|
-
"description": "output config vars in json format",
|
|
4132
|
-
"name": "json",
|
|
4097
|
+
"verbose": {
|
|
4098
|
+
"char": "v",
|
|
4099
|
+
"name": "verbose",
|
|
4133
4100
|
"allowNo": false,
|
|
4134
4101
|
"type": "boolean"
|
|
4135
4102
|
}
|
|
4136
4103
|
},
|
|
4137
4104
|
"hasDynamicHelp": false,
|
|
4138
4105
|
"hiddenAliases": [],
|
|
4139
|
-
"id": "
|
|
4106
|
+
"id": "container:pull",
|
|
4140
4107
|
"pluginAlias": "heroku",
|
|
4141
4108
|
"pluginName": "heroku",
|
|
4142
4109
|
"pluginType": "core",
|
|
4143
|
-
"strict":
|
|
4110
|
+
"strict": false,
|
|
4111
|
+
"usage": "container:pull -a APP [-v] PROCESS_TYPE...",
|
|
4112
|
+
"topic": "container",
|
|
4113
|
+
"example": "\n $ heroku container:pull web # Pulls the web image from the app\n $ heroku container:pull web worker # Pulls both the web and worker images from the app\n $ heroku container:pull web:latest # Pulls the latest tag from the web image",
|
|
4144
4114
|
"isESM": false,
|
|
4145
4115
|
"relativePath": [
|
|
4146
4116
|
"lib",
|
|
4147
4117
|
"commands",
|
|
4148
|
-
"
|
|
4149
|
-
"
|
|
4118
|
+
"container",
|
|
4119
|
+
"pull.js"
|
|
4150
4120
|
]
|
|
4151
4121
|
},
|
|
4152
|
-
"
|
|
4122
|
+
"container:push": {
|
|
4153
4123
|
"aliases": [],
|
|
4154
4124
|
"args": {},
|
|
4155
|
-
"description": "
|
|
4125
|
+
"description": "builds, then pushes Docker images to deploy your Heroku app",
|
|
4156
4126
|
"examples": [
|
|
4157
|
-
"$ heroku
|
|
4127
|
+
"$ heroku container:push web # Pushes Dockerfile to web process type",
|
|
4128
|
+
"$ heroku container:push worker # Pushes Dockerfile to worker process type",
|
|
4129
|
+
"$ heroku container:push web worker --recursive # Pushes Dockerfile.web and Dockerfile.worker",
|
|
4130
|
+
"$ heroku container:push --recursive # Pushes Dockerfile.*",
|
|
4131
|
+
"$ heroku container:push web --arg ENV=live,HTTPS=on # Build-time variables",
|
|
4132
|
+
"$ heroku container:push --recursive --context-path . # Pushes Dockerfile.* using current dir as build context"
|
|
4158
4133
|
],
|
|
4159
4134
|
"flags": {
|
|
4160
4135
|
"app": {
|
|
@@ -4166,6 +4141,33 @@
|
|
|
4166
4141
|
"multiple": false,
|
|
4167
4142
|
"type": "option"
|
|
4168
4143
|
},
|
|
4144
|
+
"verbose": {
|
|
4145
|
+
"char": "v",
|
|
4146
|
+
"name": "verbose",
|
|
4147
|
+
"allowNo": false,
|
|
4148
|
+
"type": "boolean"
|
|
4149
|
+
},
|
|
4150
|
+
"recursive": {
|
|
4151
|
+
"char": "R",
|
|
4152
|
+
"description": "pushes Dockerfile.<process> found in current and subdirectories",
|
|
4153
|
+
"name": "recursive",
|
|
4154
|
+
"allowNo": false,
|
|
4155
|
+
"type": "boolean"
|
|
4156
|
+
},
|
|
4157
|
+
"arg": {
|
|
4158
|
+
"description": "set build-time variables",
|
|
4159
|
+
"name": "arg",
|
|
4160
|
+
"hasDynamicHelp": false,
|
|
4161
|
+
"multiple": false,
|
|
4162
|
+
"type": "option"
|
|
4163
|
+
},
|
|
4164
|
+
"context-path": {
|
|
4165
|
+
"description": "path to use as build context (defaults to Dockerfile dir)",
|
|
4166
|
+
"name": "context-path",
|
|
4167
|
+
"hasDynamicHelp": false,
|
|
4168
|
+
"multiple": false,
|
|
4169
|
+
"type": "option"
|
|
4170
|
+
},
|
|
4169
4171
|
"remote": {
|
|
4170
4172
|
"char": "r",
|
|
4171
4173
|
"description": "git remote of app to use",
|
|
@@ -4176,32 +4178,26 @@
|
|
|
4176
4178
|
}
|
|
4177
4179
|
},
|
|
4178
4180
|
"hasDynamicHelp": false,
|
|
4179
|
-
"hiddenAliases": [
|
|
4180
|
-
|
|
4181
|
-
],
|
|
4182
|
-
"id": "config:set",
|
|
4181
|
+
"hiddenAliases": [],
|
|
4182
|
+
"id": "container:push",
|
|
4183
4183
|
"pluginAlias": "heroku",
|
|
4184
4184
|
"pluginName": "heroku",
|
|
4185
4185
|
"pluginType": "core",
|
|
4186
4186
|
"strict": false,
|
|
4187
|
+
"topic": "container",
|
|
4187
4188
|
"isESM": false,
|
|
4188
4189
|
"relativePath": [
|
|
4189
4190
|
"lib",
|
|
4190
4191
|
"commands",
|
|
4191
|
-
"
|
|
4192
|
-
"
|
|
4192
|
+
"container",
|
|
4193
|
+
"push.js"
|
|
4193
4194
|
]
|
|
4194
4195
|
},
|
|
4195
|
-
"
|
|
4196
|
-
"aliases": [
|
|
4197
|
-
"config:remove"
|
|
4198
|
-
],
|
|
4196
|
+
"container:release": {
|
|
4197
|
+
"aliases": [],
|
|
4199
4198
|
"args": {},
|
|
4200
|
-
"description": "
|
|
4201
|
-
"examples":
|
|
4202
|
-
"$ heroku config:unset RAILS_ENV\nUnsetting RAILS_ENV and restarting example... done, v10",
|
|
4203
|
-
"$ heroku config:unset RAILS_ENV RACK_ENV\nUnsetting RAILS_ENV, RACK_ENV and restarting example... done, v10"
|
|
4204
|
-
],
|
|
4199
|
+
"description": "Releases previously pushed Docker images to your Heroku app",
|
|
4200
|
+
"examples": "\n heroku container:release web # Releases the previously pushed web process type\n heroku container:release web worker # Releases the previously pushed web and worker process types",
|
|
4205
4201
|
"flags": {
|
|
4206
4202
|
"app": {
|
|
4207
4203
|
"char": "a",
|
|
@@ -4219,49 +4215,7 @@
|
|
|
4219
4215
|
"hasDynamicHelp": false,
|
|
4220
4216
|
"multiple": false,
|
|
4221
4217
|
"type": "option"
|
|
4222
|
-
}
|
|
4223
|
-
},
|
|
4224
|
-
"hasDynamicHelp": false,
|
|
4225
|
-
"hiddenAliases": [],
|
|
4226
|
-
"id": "config:unset",
|
|
4227
|
-
"pluginAlias": "heroku",
|
|
4228
|
-
"pluginName": "heroku",
|
|
4229
|
-
"pluginType": "core",
|
|
4230
|
-
"strict": false,
|
|
4231
|
-
"isESM": false,
|
|
4232
|
-
"relativePath": [
|
|
4233
|
-
"lib",
|
|
4234
|
-
"commands",
|
|
4235
|
-
"config",
|
|
4236
|
-
"unset.js"
|
|
4237
|
-
]
|
|
4238
|
-
},
|
|
4239
|
-
"container": {
|
|
4240
|
-
"aliases": [],
|
|
4241
|
-
"args": {},
|
|
4242
|
-
"description": "Use containers to build and deploy Heroku apps",
|
|
4243
|
-
"flags": {},
|
|
4244
|
-
"hasDynamicHelp": false,
|
|
4245
|
-
"hiddenAliases": [],
|
|
4246
|
-
"id": "container",
|
|
4247
|
-
"pluginAlias": "heroku",
|
|
4248
|
-
"pluginName": "heroku",
|
|
4249
|
-
"pluginType": "core",
|
|
4250
|
-
"strict": true,
|
|
4251
|
-
"topic": "container",
|
|
4252
|
-
"isESM": false,
|
|
4253
|
-
"relativePath": [
|
|
4254
|
-
"lib",
|
|
4255
|
-
"commands",
|
|
4256
|
-
"container",
|
|
4257
|
-
"index.js"
|
|
4258
|
-
]
|
|
4259
|
-
},
|
|
4260
|
-
"container:login": {
|
|
4261
|
-
"aliases": [],
|
|
4262
|
-
"args": {},
|
|
4263
|
-
"description": "log in to Heroku Container Registry",
|
|
4264
|
-
"flags": {
|
|
4218
|
+
},
|
|
4265
4219
|
"verbose": {
|
|
4266
4220
|
"char": "v",
|
|
4267
4221
|
"name": "verbose",
|
|
@@ -4271,52 +4225,68 @@
|
|
|
4271
4225
|
},
|
|
4272
4226
|
"hasDynamicHelp": false,
|
|
4273
4227
|
"hiddenAliases": [],
|
|
4274
|
-
"id": "container:
|
|
4228
|
+
"id": "container:release",
|
|
4275
4229
|
"pluginAlias": "heroku",
|
|
4276
4230
|
"pluginName": "heroku",
|
|
4277
4231
|
"pluginType": "core",
|
|
4278
|
-
"strict":
|
|
4232
|
+
"strict": false,
|
|
4233
|
+
"usage": "container:release",
|
|
4279
4234
|
"topic": "container",
|
|
4235
|
+
"example": "\n heroku container:release web # Releases the previously pushed web process type\n heroku container:release web worker # Releases the previously pushed web and worker process types",
|
|
4280
4236
|
"isESM": false,
|
|
4281
4237
|
"relativePath": [
|
|
4282
4238
|
"lib",
|
|
4283
4239
|
"commands",
|
|
4284
4240
|
"container",
|
|
4285
|
-
"
|
|
4241
|
+
"release.js"
|
|
4286
4242
|
]
|
|
4287
4243
|
},
|
|
4288
|
-
"container:
|
|
4244
|
+
"container:rm": {
|
|
4289
4245
|
"aliases": [],
|
|
4290
4246
|
"args": {},
|
|
4291
|
-
"description": "
|
|
4247
|
+
"description": "remove the process type from your app",
|
|
4248
|
+
"examples": "\n heroku container:rm web # Destroys the web container\n heroku container:rm web worker # Destroys the web and worker containers",
|
|
4292
4249
|
"flags": {
|
|
4293
|
-
"
|
|
4294
|
-
"char": "
|
|
4295
|
-
"
|
|
4296
|
-
"
|
|
4297
|
-
"
|
|
4250
|
+
"app": {
|
|
4251
|
+
"char": "a",
|
|
4252
|
+
"description": "app to run command against",
|
|
4253
|
+
"name": "app",
|
|
4254
|
+
"required": true,
|
|
4255
|
+
"hasDynamicHelp": false,
|
|
4256
|
+
"multiple": false,
|
|
4257
|
+
"type": "option"
|
|
4258
|
+
},
|
|
4259
|
+
"remote": {
|
|
4260
|
+
"char": "r",
|
|
4261
|
+
"description": "git remote of app to use",
|
|
4262
|
+
"name": "remote",
|
|
4263
|
+
"hasDynamicHelp": false,
|
|
4264
|
+
"multiple": false,
|
|
4265
|
+
"type": "option"
|
|
4298
4266
|
}
|
|
4299
4267
|
},
|
|
4300
4268
|
"hasDynamicHelp": false,
|
|
4301
4269
|
"hiddenAliases": [],
|
|
4302
|
-
"id": "container:
|
|
4270
|
+
"id": "container:rm",
|
|
4303
4271
|
"pluginAlias": "heroku",
|
|
4304
4272
|
"pluginName": "heroku",
|
|
4305
4273
|
"pluginType": "core",
|
|
4306
|
-
"strict":
|
|
4274
|
+
"strict": false,
|
|
4275
|
+
"usage": "container:rm -a APP [-v] PROCESS_TYPE...",
|
|
4307
4276
|
"topic": "container",
|
|
4277
|
+
"example": "\n heroku container:rm web # Destroys the web container\n heroku container:rm web worker # Destroys the web and worker containers",
|
|
4308
4278
|
"isESM": false,
|
|
4309
4279
|
"relativePath": [
|
|
4310
4280
|
"lib",
|
|
4311
4281
|
"commands",
|
|
4312
4282
|
"container",
|
|
4313
|
-
"
|
|
4283
|
+
"rm.js"
|
|
4314
4284
|
]
|
|
4315
4285
|
},
|
|
4316
|
-
"container:
|
|
4286
|
+
"container:run": {
|
|
4317
4287
|
"aliases": [],
|
|
4318
4288
|
"args": {},
|
|
4319
|
-
"description": "
|
|
4289
|
+
"description": "builds, then runs the docker image locally",
|
|
4320
4290
|
"examples": "\n $ heroku container:pull web # Pulls the web image from the app\n $ heroku container:pull web worker # Pulls both the web and worker images from the app\n $ heroku container:pull web:latest # Pulls the latest tag from the web image",
|
|
4321
4291
|
"flags": {
|
|
4322
4292
|
"app": {
|
|
@@ -4336,6 +4306,15 @@
|
|
|
4336
4306
|
"multiple": false,
|
|
4337
4307
|
"type": "option"
|
|
4338
4308
|
},
|
|
4309
|
+
"port": {
|
|
4310
|
+
"char": "p",
|
|
4311
|
+
"description": "port the app will run on",
|
|
4312
|
+
"name": "port",
|
|
4313
|
+
"default": 5000,
|
|
4314
|
+
"hasDynamicHelp": false,
|
|
4315
|
+
"multiple": false,
|
|
4316
|
+
"type": "option"
|
|
4317
|
+
},
|
|
4339
4318
|
"verbose": {
|
|
4340
4319
|
"char": "v",
|
|
4341
4320
|
"name": "verbose",
|
|
@@ -4345,12 +4324,12 @@
|
|
|
4345
4324
|
},
|
|
4346
4325
|
"hasDynamicHelp": false,
|
|
4347
4326
|
"hiddenAliases": [],
|
|
4348
|
-
"id": "container:
|
|
4327
|
+
"id": "container:run",
|
|
4349
4328
|
"pluginAlias": "heroku",
|
|
4350
4329
|
"pluginName": "heroku",
|
|
4351
4330
|
"pluginType": "core",
|
|
4352
4331
|
"strict": false,
|
|
4353
|
-
"usage": "container:
|
|
4332
|
+
"usage": "container:run -a APP [-v] PROCESS_TYPE...",
|
|
4354
4333
|
"topic": "container",
|
|
4355
4334
|
"example": "\n $ heroku container:pull web # Pulls the web image from the app\n $ heroku container:pull web worker # Pulls both the web and worker images from the app\n $ heroku container:pull web:latest # Pulls the latest tag from the web image",
|
|
4356
4335
|
"isESM": false,
|
|
@@ -4358,20 +4337,23 @@
|
|
|
4358
4337
|
"lib",
|
|
4359
4338
|
"commands",
|
|
4360
4339
|
"container",
|
|
4361
|
-
"
|
|
4340
|
+
"run.js"
|
|
4362
4341
|
]
|
|
4363
4342
|
},
|
|
4364
|
-
"
|
|
4343
|
+
"config:edit": {
|
|
4365
4344
|
"aliases": [],
|
|
4366
|
-
"args": {
|
|
4367
|
-
|
|
4345
|
+
"args": {
|
|
4346
|
+
"key": {
|
|
4347
|
+
"description": "edit a single key",
|
|
4348
|
+
"name": "key"
|
|
4349
|
+
}
|
|
4350
|
+
},
|
|
4351
|
+
"description": "interactively edit config vars\nThis command opens the app config in a text editor set by $VISUAL or $EDITOR.\nAny variables added/removed/changed will be updated on the app after saving and closing the file.",
|
|
4368
4352
|
"examples": [
|
|
4369
|
-
"
|
|
4370
|
-
"
|
|
4371
|
-
"
|
|
4372
|
-
"$
|
|
4373
|
-
"$ heroku container:push web --arg ENV=live,HTTPS=on # Build-time variables",
|
|
4374
|
-
"$ heroku container:push --recursive --context-path . # Pushes Dockerfile.* using current dir as build context"
|
|
4353
|
+
"# edit with vim\n$ EDITOR=\"vim\" heroku config:edit",
|
|
4354
|
+
"# edit with emacs\n$ EDITOR=\"emacs\" heroku config:edit",
|
|
4355
|
+
"# edit with pico\n$ EDITOR=\"pico\" heroku config:edit",
|
|
4356
|
+
"# edit with atom editor\n$ VISUAL=\"atom --wait\" heroku config:edit"
|
|
4375
4357
|
],
|
|
4376
4358
|
"flags": {
|
|
4377
4359
|
"app": {
|
|
@@ -4383,29 +4365,47 @@
|
|
|
4383
4365
|
"multiple": false,
|
|
4384
4366
|
"type": "option"
|
|
4385
4367
|
},
|
|
4386
|
-
"
|
|
4387
|
-
"char": "
|
|
4388
|
-
"
|
|
4389
|
-
"
|
|
4390
|
-
"type": "boolean"
|
|
4391
|
-
},
|
|
4392
|
-
"recursive": {
|
|
4393
|
-
"char": "R",
|
|
4394
|
-
"description": "pushes Dockerfile.<process> found in current and subdirectories",
|
|
4395
|
-
"name": "recursive",
|
|
4396
|
-
"allowNo": false,
|
|
4397
|
-
"type": "boolean"
|
|
4398
|
-
},
|
|
4399
|
-
"arg": {
|
|
4400
|
-
"description": "set build-time variables",
|
|
4401
|
-
"name": "arg",
|
|
4368
|
+
"remote": {
|
|
4369
|
+
"char": "r",
|
|
4370
|
+
"description": "git remote of app to use",
|
|
4371
|
+
"name": "remote",
|
|
4402
4372
|
"hasDynamicHelp": false,
|
|
4403
4373
|
"multiple": false,
|
|
4404
4374
|
"type": "option"
|
|
4405
|
-
}
|
|
4406
|
-
|
|
4407
|
-
|
|
4408
|
-
|
|
4375
|
+
}
|
|
4376
|
+
},
|
|
4377
|
+
"hasDynamicHelp": false,
|
|
4378
|
+
"hiddenAliases": [],
|
|
4379
|
+
"id": "config:edit",
|
|
4380
|
+
"pluginAlias": "heroku",
|
|
4381
|
+
"pluginName": "heroku",
|
|
4382
|
+
"pluginType": "core",
|
|
4383
|
+
"strict": true,
|
|
4384
|
+
"isESM": false,
|
|
4385
|
+
"relativePath": [
|
|
4386
|
+
"lib",
|
|
4387
|
+
"commands",
|
|
4388
|
+
"config",
|
|
4389
|
+
"edit.js"
|
|
4390
|
+
]
|
|
4391
|
+
},
|
|
4392
|
+
"config:get": {
|
|
4393
|
+
"aliases": [],
|
|
4394
|
+
"args": {
|
|
4395
|
+
"KEY": {
|
|
4396
|
+
"description": "key name of the config var value",
|
|
4397
|
+
"name": "KEY",
|
|
4398
|
+
"required": true
|
|
4399
|
+
}
|
|
4400
|
+
},
|
|
4401
|
+
"description": "display a single config value for an app",
|
|
4402
|
+
"examples": "$ heroku config:get RAILS_ENV\nproduction",
|
|
4403
|
+
"flags": {
|
|
4404
|
+
"app": {
|
|
4405
|
+
"char": "a",
|
|
4406
|
+
"description": "app to run command against",
|
|
4407
|
+
"name": "app",
|
|
4408
|
+
"required": true,
|
|
4409
4409
|
"hasDynamicHelp": false,
|
|
4410
4410
|
"multiple": false,
|
|
4411
4411
|
"type": "option"
|
|
@@ -4417,29 +4417,36 @@
|
|
|
4417
4417
|
"hasDynamicHelp": false,
|
|
4418
4418
|
"multiple": false,
|
|
4419
4419
|
"type": "option"
|
|
4420
|
+
},
|
|
4421
|
+
"shell": {
|
|
4422
|
+
"char": "s",
|
|
4423
|
+
"description": "output config vars in shell format",
|
|
4424
|
+
"name": "shell",
|
|
4425
|
+
"allowNo": false,
|
|
4426
|
+
"type": "boolean"
|
|
4420
4427
|
}
|
|
4421
4428
|
},
|
|
4422
4429
|
"hasDynamicHelp": false,
|
|
4423
4430
|
"hiddenAliases": [],
|
|
4424
|
-
"id": "
|
|
4431
|
+
"id": "config:get",
|
|
4425
4432
|
"pluginAlias": "heroku",
|
|
4426
4433
|
"pluginName": "heroku",
|
|
4427
4434
|
"pluginType": "core",
|
|
4428
4435
|
"strict": false,
|
|
4429
|
-
"
|
|
4436
|
+
"usage": "config:get KEY...",
|
|
4437
|
+
"example": "$ heroku config:get RAILS_ENV\nproduction",
|
|
4430
4438
|
"isESM": false,
|
|
4431
4439
|
"relativePath": [
|
|
4432
4440
|
"lib",
|
|
4433
4441
|
"commands",
|
|
4434
|
-
"
|
|
4435
|
-
"
|
|
4442
|
+
"config",
|
|
4443
|
+
"get.js"
|
|
4436
4444
|
]
|
|
4437
4445
|
},
|
|
4438
|
-
"
|
|
4446
|
+
"config": {
|
|
4439
4447
|
"aliases": [],
|
|
4440
4448
|
"args": {},
|
|
4441
|
-
"description": "
|
|
4442
|
-
"examples": "\n heroku container:release web # Releases the previously pushed web process type\n heroku container:release web worker # Releases the previously pushed web and worker process types",
|
|
4449
|
+
"description": "display the config vars for an app",
|
|
4443
4450
|
"flags": {
|
|
4444
4451
|
"app": {
|
|
4445
4452
|
"char": "a",
|
|
@@ -4458,36 +4465,43 @@
|
|
|
4458
4465
|
"multiple": false,
|
|
4459
4466
|
"type": "option"
|
|
4460
4467
|
},
|
|
4461
|
-
"
|
|
4462
|
-
"char": "
|
|
4463
|
-
"
|
|
4468
|
+
"shell": {
|
|
4469
|
+
"char": "s",
|
|
4470
|
+
"description": "output config vars in shell format",
|
|
4471
|
+
"name": "shell",
|
|
4472
|
+
"allowNo": false,
|
|
4473
|
+
"type": "boolean"
|
|
4474
|
+
},
|
|
4475
|
+
"json": {
|
|
4476
|
+
"char": "j",
|
|
4477
|
+
"description": "output config vars in json format",
|
|
4478
|
+
"name": "json",
|
|
4464
4479
|
"allowNo": false,
|
|
4465
4480
|
"type": "boolean"
|
|
4466
4481
|
}
|
|
4467
4482
|
},
|
|
4468
4483
|
"hasDynamicHelp": false,
|
|
4469
4484
|
"hiddenAliases": [],
|
|
4470
|
-
"id": "
|
|
4485
|
+
"id": "config",
|
|
4471
4486
|
"pluginAlias": "heroku",
|
|
4472
4487
|
"pluginName": "heroku",
|
|
4473
4488
|
"pluginType": "core",
|
|
4474
|
-
"strict":
|
|
4475
|
-
"usage": "container:release",
|
|
4476
|
-
"topic": "container",
|
|
4477
|
-
"example": "\n heroku container:release web # Releases the previously pushed web process type\n heroku container:release web worker # Releases the previously pushed web and worker process types",
|
|
4489
|
+
"strict": true,
|
|
4478
4490
|
"isESM": false,
|
|
4479
4491
|
"relativePath": [
|
|
4480
4492
|
"lib",
|
|
4481
4493
|
"commands",
|
|
4482
|
-
"
|
|
4483
|
-
"
|
|
4494
|
+
"config",
|
|
4495
|
+
"index.js"
|
|
4484
4496
|
]
|
|
4485
4497
|
},
|
|
4486
|
-
"
|
|
4498
|
+
"config:set": {
|
|
4487
4499
|
"aliases": [],
|
|
4488
4500
|
"args": {},
|
|
4489
|
-
"description": "
|
|
4490
|
-
"examples":
|
|
4501
|
+
"description": "set one or more config vars",
|
|
4502
|
+
"examples": [
|
|
4503
|
+
"$ heroku config:set RAILS_ENV=staging\nSetting config vars and restarting example... done, v10\nRAILS_ENV: staging\n\n$ heroku config:set RAILS_ENV=staging RACK_ENV=staging\nSetting config vars and restarting example... done, v11\nRAILS_ENV: staging\nRACK_ENV: staging"
|
|
4504
|
+
],
|
|
4491
4505
|
"flags": {
|
|
4492
4506
|
"app": {
|
|
4493
4507
|
"char": "a",
|
|
@@ -4508,28 +4522,32 @@
|
|
|
4508
4522
|
}
|
|
4509
4523
|
},
|
|
4510
4524
|
"hasDynamicHelp": false,
|
|
4511
|
-
"hiddenAliases": [
|
|
4512
|
-
|
|
4525
|
+
"hiddenAliases": [
|
|
4526
|
+
"config:add"
|
|
4527
|
+
],
|
|
4528
|
+
"id": "config:set",
|
|
4513
4529
|
"pluginAlias": "heroku",
|
|
4514
4530
|
"pluginName": "heroku",
|
|
4515
4531
|
"pluginType": "core",
|
|
4516
4532
|
"strict": false,
|
|
4517
|
-
"usage": "container:rm -a APP [-v] PROCESS_TYPE...",
|
|
4518
|
-
"topic": "container",
|
|
4519
|
-
"example": "\n heroku container:rm web # Destroys the web container\n heroku container:rm web worker # Destroys the web and worker containers",
|
|
4520
4533
|
"isESM": false,
|
|
4521
4534
|
"relativePath": [
|
|
4522
4535
|
"lib",
|
|
4523
4536
|
"commands",
|
|
4524
|
-
"
|
|
4525
|
-
"
|
|
4537
|
+
"config",
|
|
4538
|
+
"set.js"
|
|
4526
4539
|
]
|
|
4527
4540
|
},
|
|
4528
|
-
"
|
|
4529
|
-
"aliases": [
|
|
4541
|
+
"config:unset": {
|
|
4542
|
+
"aliases": [
|
|
4543
|
+
"config:remove"
|
|
4544
|
+
],
|
|
4530
4545
|
"args": {},
|
|
4531
|
-
"description": "
|
|
4532
|
-
"examples":
|
|
4546
|
+
"description": "unset one or more config vars",
|
|
4547
|
+
"examples": [
|
|
4548
|
+
"$ heroku config:unset RAILS_ENV\nUnsetting RAILS_ENV and restarting example... done, v10",
|
|
4549
|
+
"$ heroku config:unset RAILS_ENV RACK_ENV\nUnsetting RAILS_ENV, RACK_ENV and restarting example... done, v10"
|
|
4550
|
+
],
|
|
4533
4551
|
"flags": {
|
|
4534
4552
|
"app": {
|
|
4535
4553
|
"char": "a",
|
|
@@ -4547,39 +4565,21 @@
|
|
|
4547
4565
|
"hasDynamicHelp": false,
|
|
4548
4566
|
"multiple": false,
|
|
4549
4567
|
"type": "option"
|
|
4550
|
-
},
|
|
4551
|
-
"port": {
|
|
4552
|
-
"char": "p",
|
|
4553
|
-
"description": "port the app will run on",
|
|
4554
|
-
"name": "port",
|
|
4555
|
-
"default": 5000,
|
|
4556
|
-
"hasDynamicHelp": false,
|
|
4557
|
-
"multiple": false,
|
|
4558
|
-
"type": "option"
|
|
4559
|
-
},
|
|
4560
|
-
"verbose": {
|
|
4561
|
-
"char": "v",
|
|
4562
|
-
"name": "verbose",
|
|
4563
|
-
"allowNo": false,
|
|
4564
|
-
"type": "boolean"
|
|
4565
4568
|
}
|
|
4566
4569
|
},
|
|
4567
4570
|
"hasDynamicHelp": false,
|
|
4568
4571
|
"hiddenAliases": [],
|
|
4569
|
-
"id": "
|
|
4572
|
+
"id": "config:unset",
|
|
4570
4573
|
"pluginAlias": "heroku",
|
|
4571
4574
|
"pluginName": "heroku",
|
|
4572
4575
|
"pluginType": "core",
|
|
4573
4576
|
"strict": false,
|
|
4574
|
-
"usage": "container:run -a APP [-v] PROCESS_TYPE...",
|
|
4575
|
-
"topic": "container",
|
|
4576
|
-
"example": "\n $ heroku container:pull web # Pulls the web image from the app\n $ heroku container:pull web worker # Pulls both the web and worker images from the app\n $ heroku container:pull web:latest # Pulls the latest tag from the web image",
|
|
4577
4577
|
"isESM": false,
|
|
4578
4578
|
"relativePath": [
|
|
4579
4579
|
"lib",
|
|
4580
4580
|
"commands",
|
|
4581
|
-
"
|
|
4582
|
-
"
|
|
4581
|
+
"config",
|
|
4582
|
+
"unset.js"
|
|
4583
4583
|
]
|
|
4584
4584
|
},
|
|
4585
4585
|
"domains:add": {
|
|
@@ -15007,5 +15007,5 @@
|
|
|
15007
15007
|
]
|
|
15008
15008
|
}
|
|
15009
15009
|
},
|
|
15010
|
-
"version": "10.
|
|
15010
|
+
"version": "10.13.0-beta.0"
|
|
15011
15011
|
}
|