This is an image to run the heroku cli.
Run the heroku-cli
image:
docker run \
--rm \
--interactive \
--tty \
--volume "$(pwd)":/app \
finalgene/heroku-cli
Mount the .netrc-file into the container to use the interactive login.
docker run \
--rm \
--interactive \
--tty \
--volume ~/.cache/heroku:/root/.cache/heroku \
--volume ~/.local/share/heroku:/root/.local/share/heroku \
--volume ~/.netrc:/root/.netrc \
--volume "$(pwd)":/app \
finalgene/heroku-cli login
You can use any of the heroku cli commands
docker run \
--rm \
--interactive \
--tty \
--volume ~/.cache/heroku:/root/.cache/heroku \
--volume ~/.local/share/heroku:/root/.local/share/heroku \
--volume ~/.netrc:/root/.netrc \
--volume "$(pwd)":/app \
finalgene/heroku-cli help
For further information take a look at the heroku command documentation.
-
Where to get help: the Docker Community Forums, the Docker Community Slack, or Stack Overflow
-
Where to file issues: https://github.com/final-gene/docker-hub-heroku-cli/issues
-
Maintained by: The final gene Team
-
Source of this description: Repository README.md