docker-up

Deploy a docker container on heroku in one line

Usage no npm install needed!

<script type="module">
  import dockerUp from 'https://cdn.skypack.dev/docker-up';
</script>

README

Docker-Up

Deploy your docker container to a heroku instance in one line.

Usage

docker-up

This will automatically run the following commands:

heroku create
heroku container:login
heroku container:push web -a APP_NAME
heroku container:release web -a APP_NAME

docker-up -u | --update

This will only run:

heroku container:login
heroku container:push web -a APP_NAME
heroku container:release web -a APP_NAME