Skip to content

Commit

Permalink
fix(nx-nest): update docker compose file name to compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
dario-rodriguez committed Mar 18, 2024
1 parent dbf3b77 commit a05c477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nx-nest/src/utils/merge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function mergeYmlFile(content1: string, content2: string): string {
}

export function mergeDockerCompose(tree: Tree, content: string): void {
const dockerComposePath = 'docker-compose.yml';
const dockerComposePath = 'compose.yaml';
const dockerComposeYml = tree.read(dockerComposePath)?.toString('utf-8') ?? '';

tree.write(dockerComposePath, mergeYmlFile(dockerComposeYml, content));
Expand Down

0 comments on commit a05c477

Please sign in to comment.