Skip to content

Commit

Permalink
change compose file path
Browse files Browse the repository at this point in the history
  • Loading branch information
JensRavens committed Feb 7, 2024
1 parent 609eb8f commit 4798c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kraaken/cli/app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def credentials
desc "deploy", "deploys the app"
option :file, aliases: "-f", desc: "docker-compose file to deploy"
def deploy
default_path = File.expand_path("config/deploy/docker-compose.yml", destination_root)
default_path = File.expand_path("config/docker-compose.yml", destination_root)
file = File.new(options[:file]) if options[:file].present? && File.exist?(options[:file])
file = File.new(default_path) if !file && File.exist?(default_path)
logger.error "No docker-compose file found" and return unless file
Expand Down

0 comments on commit 4798c03

Please sign in to comment.