Reputation: 67997
Using the heroku docker:release command, how can I specify which app to release to? I can't see from any documentation whether there's any switch for this purpose.
Upvotes: 0
Views: 90
Reputation: 103965
Heroku commands take their context from the directory you are in when you run them.
Go into the directory from where you did heroku create
then run heroku docker:release
.
If you haven't used heroku create
, then you can specify the app name with the --app <APP NAME>
command line parameter. for instance, if you were to release to the app named f00
you would type:
heroku docker:release --app f00
Upvotes: 1