From 59e247a1a5ed759771ec0e6021c08671c2e23b4c Mon Sep 17 00:00:00 2001 From: jbyrum Date: Fri, 10 Jun 2016 12:14:04 -0700 Subject: [PATCH 1/2] Update README.md Removed deprecated commands to minimize confusion --- README.md | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 821c3e2..044e9f2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Heroku Docker CLI plugin +# Heroku container tools CLI plugin -Heroku Toolbelt plugin to help configure, test and release apps to Heroku using Docker and Docker Compose. +Heroku Toolbelt plugin to push Docker images to the Heroku container registry. ## Installation @@ -20,20 +20,8 @@ Usage: heroku container Additional commands, type "heroku help COMMAND" for more details: - container:init # create Dockerfile and docker-compose.yml - container:release # create and release slug to app -``` - -For help with a particular command: - -``` -$ heroku help container:init -Usage: heroku container:init - - -i, --image IMAGE # the Docker image from which to inherit - -f, --force # overwrite existing Dockerfile and docker-compose.yml - - Creates a Dockerfile and docker-compose.yml for the app specified in app.json + container:login # Logs in to the Heroku container registry + container:push [PROCESS] # Builds, then pushes a Docker image to deploy your Heroku app ``` ## Developing and contributing @@ -46,8 +34,3 @@ $ cd heroku-container-tools $ npm install $ heroku plugins:link . ``` - -### Add-ons - -The mapping from Heroku add-on specified in `app.json` to container configured in `docker-compose.yml` is tracked in `lib\app.json`. -The mapping currently includes a limited subset of add-ons that we have tested. We welcome additions in the form of PRs. From 43960b163c71f782cfbdaa258dd68a9971293db1 Mon Sep 17 00:00:00 2001 From: jbyrum Date: Fri, 10 Jun 2016 12:15:57 -0700 Subject: [PATCH 2/2] Update login.js Rename --- commands/login.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/login.js b/commands/login.js index 236e321..281c6e0 100644 --- a/commands/login.js +++ b/commands/login.js @@ -9,7 +9,7 @@ module.exports = function(topic) { topic: topic, command: 'login', flags: [{ name: 'verbose', char: 'v', hasValue: false }], - description: 'Logs in to the Heroku Docker registry', + description: 'Logs in to the Heroku container registry', needsApp: false, needsAuth: true, run: cli.command(co.wrap(login))