From 9c6cd33dec7c03e40f8e3131e7b6d267f08928c8 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 8 Jan 2023 09:35:11 +0100 Subject: [PATCH] Ensure we're logged in --- lib/tasks/mrsk/mrsk.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/mrsk/mrsk.rake b/lib/tasks/mrsk/mrsk.rake index ef306fac..3afed034 100644 --- a/lib/tasks/mrsk/mrsk.rake +++ b/lib/tasks/mrsk/mrsk.rake @@ -1,6 +1,6 @@ namespace :mrsk do desc "Push the latest version of the app, ensure Traefik is running, then restart app" - task deploy: [ "app:push", "traefik:start", "app:restart" ] + task deploy: [ "registry:login", "app:push", "traefik:start", "app:restart" ] desc "Display information about Traefik and app containers" task info: [ "traefik:info", "app:info" ]