Skip to content

Commit cc16348

Browse files
hunterloftisjdx
authored andcommitted
Merge pull request #1 from heroku/rename
rename package, update metadata
1 parent 467e0c0 commit cc16348

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+15
-657
lines changed

packages/heroku-container-registry/LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015, Heroku <>
1+
Copyright (c) 2016, Heroku <>
22

33
Permission to use, copy, modify, and/or distribute this software for any
44
purpose with or without fee is hereby granted, provided that the above
@@ -11,4 +11,3 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1111
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1212
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1313
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14-

packages/heroku-container-registry/Makefile

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 8 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,20 @@
1-
# Heroku Docker CLI plugin
1+
# Heroku Container Registry CLI plugin
22

3-
Heroku Toolbelt plugin to help configure, test and release apps to Heroku using Docker and Docker Compose.
3+
Heroku Toolbelt plugin to release apps to Heroku that are built on local containers.
44

55
## Installation
66

77
```
8-
$ heroku plugins:install heroku-container-tools
8+
$ heroku plugins:install heroku-container-registry
99
```
1010

1111
## Use
1212

13-
See the [Dev Center Documentation](https://devcenter.heroku.com/articles/introduction-local-development-with-docker) for details of use.
13+
In a directory with a Dockerfile:
1414

1515
```
16-
$ heroku help container
17-
Usage: heroku container
18-
19-
Use Docker to build and deploy Heroku apps
20-
21-
Additional commands, type "heroku help COMMAND" for more details:
22-
23-
container:init # create Dockerfile and docker-compose.yml
24-
container:release # create and release slug to app
25-
```
26-
27-
For help with a particular command:
28-
29-
```
30-
$ heroku help container:init
31-
Usage: heroku container:init
32-
33-
-i, --image IMAGE # the Docker image from which to inherit
34-
-f, --force # overwrite existing Dockerfile and docker-compose.yml
35-
36-
Creates a Dockerfile and docker-compose.yml for the app specified in app.json
37-
```
38-
39-
## Developing and contributing
40-
41-
Checkout the plugin source code and tell the Heroku CLI to use your local version of the plugin (instead of the default one distributed with NPM).
42-
43-
```
44-
$ git clone https://github.com/heroku/heroku-container-tools.git
45-
$ cd heroku-container-tools
46-
$ npm install
47-
$ heroku plugins:link .
16+
$ heroku container:login
17+
$ heroku create
18+
$ heroku container:push
19+
$ heroku open
4820
```
49-
50-
### Add-ons
51-
52-
The mapping from Heroku add-on specified in `app.json` to container configured in `docker-compose.yml` is tracked in `lib\app.json`.
53-
The mapping currently includes a limited subset of add-ons that we have tested. We welcome additions in the form of PRs.

packages/heroku-container-registry/contributing.md

Lines changed: 0 additions & 75 deletions
This file was deleted.

packages/heroku-container-registry/lib/addons.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

packages/heroku-container-registry/lib/directory.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

packages/heroku-container-registry/lib/docker.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

packages/heroku-container-registry/lib/safely.js

Lines changed: 0 additions & 23 deletions
This file was deleted.

packages/heroku-container-registry/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
2-
"name": "heroku-container-tools",
3-
"version": "3.0.0",
2+
"name": "heroku-container-registry",
3+
"version": "4.0.0",
44
"topic": "container",
5-
"description": "Use Docker to build and deploy Heroku apps",
5+
"description": "Use containers to build and deploy Heroku apps",
66
"main": "index.js",
7-
"repository": "https://github.com/heroku/heroku-container-tools",
7+
"repository": "https://github.com/heroku/heroku-container-registry",
88
"scripts": {
99
"test": "mocha",
1010
"depcheck": "depcheck || true"
1111
},
1212
"keywords": [
1313
"heroku",
14-
"docker",
14+
"container",
1515
"cli",
1616
"heroku-plugin"
1717
],
18-
"author": "Hunter Loftis <hunter@hunterloftis.com>",
18+
"author": "Hunter Loftis <hunter@heroku.com>",
1919
"license": "ISC",
2020
"dependencies": {
2121
"camelcase": "1.0.2",

packages/heroku-container-registry/test/fixtures/addons/after/Dockerfile

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)