Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alvarogarcia7/heroku-cli-docker

Docker image so you don't have to install the CLI on your environment
https://github.com/alvarogarcia7/heroku-cli-docker

docker dockerfile heroku heroku-cli

Last synced: 29 days ago
JSON representation

Docker image so you don't have to install the CLI on your environment

Awesome Lists containing this project

README

        

# heroku-cli on docker

## Installation

```bash
git clone [email protected]:alvarogarcia7/heroku-cli-docker.git
cd heroku-cli-docker
docker build -t heroku-cli-runner .
```

## Running

On the project folder:

```bash
docker run -it -v $(PWD):/app heroku-cli-runner
```

inside the container:

```bash
heroku login
# input your username and password
cd /app
git push -u heroku master
```

## Monitoring

TODO