Files
kamal/lib/tasks/mrsk/mrsk.rake
David Heinemeier Hansson 9c6cd33dec Ensure we're logged in
2023-01-08 09:35:55 +01:00

13 lines
391 B
Ruby

namespace :mrsk do
desc "Push the latest version of the app, ensure Traefik is running, then restart app"
task deploy: [ "registry:login", "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