Skip to content

Commit

Permalink
fix minor bug in docker compose generator (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
svrnm authored Jan 7, 2025
1 parent 1ce6645 commit cac07ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generators/docker-compose/createComposeFile.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def main():

template = env.get_template(template_path)

rendered_content = render_compose_file(template, data, defaultValues)
rendered_content = render_compose_file(template, yaml_data, defaultValues)

with open(output_path, 'w') as output_file:
output_file.write(rendered_content)
Expand Down

0 comments on commit cac07ef

Please sign in to comment.