Container Registry Docker Image - AdopseTeam/IMDB GitHub Wiki
Container Registry - Docker Image
Our Deployed Application can be very easily be updated by its provided Container Registry from Heroku.
Getting Started
Make sure you have a working Docker installation (eg. docker ps) and that you’re logged in to Heroku (heroku login). Log in to Container Registry:
$ heroku container:login
Get sample code (GitHub clone, your own code etc.)
$ git clone https://github.com/your-project.git
Navigate to the app’s directory and create a Heroku app:
$ heroku create
Build the image and push to Container Registry:
$ heroku container:push web
Then release the image to your app:
$ heroku container:release web
Now open the app in your browser:
$ heroku open