You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have created a new app and successfully deployed a docker image. It works, but now I've rebuilt the image and pushed it to the registry. After heroku container:release web I'm getting The process type web was not updated, because it is already running the specified docker image..
Steps to reproduce:
Create a new app
Build and tag an image locally:
docker build -t api -f Docker/Dockerfile .
docker tag api registry.heroku.com/api/web
Release it heroku container:release web
Modify Dockerfile and repeat steps 2 and 3.
What is the expected behavior?
A new docker container is created.
Is it even possible to release a new version of your app with docker in heroku?
The text was updated successfully, but these errors were encountered:
What is the current behavior?
I have created a new app and successfully deployed a docker image. It works, but now I've rebuilt the image and pushed it to the registry. After
heroku container:release web
I'm gettingThe process type web was not updated, because it is already running the specified docker image.
.Steps to reproduce:
docker build -t api -f Docker/Dockerfile . docker tag api registry.heroku.com/api/web
heroku container:release web
Dockerfile
and repeat steps 2 and 3.What is the expected behavior?
A new docker container is created.
Is it even possible to release a new version of your app with docker in heroku?
The text was updated successfully, but these errors were encountered: