From e7afbc940729ffcedc05b82217d390821be006a4 Mon Sep 17 00:00:00 2001 From: Flying Nobita <46126470+flyingnobita@users.noreply.github.com> Date: Tue, 5 May 2020 20:10:41 +0800 Subject: [PATCH] https://devcenter.heroku.com/articles/container-registry-and-runtime#logging-in-to-the-registry According to the latest heroku doc, one needs to login to the Container Registry otherwise heroku container:push will fail with error: no basic auth credentials. --- Heroku.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Heroku.md b/Heroku.md index b34e85c..64030e2 100644 --- a/Heroku.md +++ b/Heroku.md @@ -7,6 +7,7 @@ git clone https://github.com/statping/statping.git cd statping heroku login heroku create APP_NAME +heroku container:login heroku container:push -a APP_NAME web heroku container:release -a APP_NAME web ```