Files
kamal/lib/tasks/mrsk/mrsk.rake
David Heinemeier Hansson f7f61f697f First
2023-01-07 15:32:25 +01:00

13 lines
373 B
Ruby

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" ]
desc "Display information about Traefik and app containers"
task info: [ "traefik:info", "app:info" ]
desc "Create config stub"
task :init do
Rails.root.join("config/deploy.yml")
end
end