From 5179d0db37ac232b19243ae337bc7082200700fb Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 13 Jan 2023 17:12:46 +0100 Subject: [PATCH] Go with ship and make it the default --- lib/tasks/mrsk/mrsk.rake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tasks/mrsk/mrsk.rake b/lib/tasks/mrsk/mrsk.rake index 7df4252d..748dd18b 100644 --- a/lib/tasks/mrsk/mrsk.rake +++ b/lib/tasks/mrsk/mrsk.rake @@ -1,8 +1,8 @@ require_relative "setup" namespace :mrsk do - desc "Deploy app for the first time to a fresh server" - task fresh: %w[ server:bootstrap deploy ] + desc "Ship the app to servers that will have Docker installed if missing" + task ship: %w[ server:bootstrap deploy ] desc "Push the latest version of the app, ensure Traefik is running, then restart app" task deploy: %w[ registry:login build:deliver traefik:run app:stop app:run prune ]